题解 3012: 分苹果

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

编写题解 3012: 分苹果

摘要:解题思路:注意事项:参考代码:n=int(input())apple=0for i in range(1,n+1):    apple+=iprint(apple)……

题解 3012: 分苹果

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>int main(){    int n;    scanf("%d",&n);    printf("%ld",(n+1)……

用C语言解决分苹果

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main()    {     int n,a=0;     scanf("%d",&n);     for(int i=1;i……