题解 1059: 二级C语言-等差数列

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

筛选

二级C语言-等差数列

摘要:解题思路:提前定义sum=2,使b=1,则输入1时会跳过for语句直接输出2注意事项:for语句括号内顺序不要错误参考代码:#include<stdio.h>intmain(){inta,……

新手来尝试写一写

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

二级C语言-等差数列

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int&nbsp;main(){int&nbsp;n,d&nbsp;=&nbsp;3,a1&……

二级C语言-等差数列

摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){intn,sum;cin>>n;sum=(2+2+3*……