题解 1159: 偶数求和

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

筛选

[偶数求和]-题解(C语言代码)

摘要:解题思路:注意事项:就是正常逻辑,但要注意每个语句的先后,可以先找个样例推一遍参考代码:#include"stdio.h"int main(){    int n, i, m, count , x, ……

[偶数求和]-题解(C语言代码)

摘要:解题思路:通过等差数列找出每组间的规律循环求解注意事项:参考代码:#include<stdio.h>int main(){ int a,b,r,max,i; while(~scanf("%d%d",&……

[偶数求和]-题解(Java代码)

摘要:解题思路:使用数组来记录等差数列  然后分情况进行计算   注意事项:参考代码:import java.util.Scanner; public class Main { public st……

[偶数求和]-题解(C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int n,m,rest=1; int num;            //记录数列的每个数 int c=0……