题解 1149: C语言训练-计算1~N之间所有奇数之和

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

筛选

普普通通的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h> int main(){ int a,sum = 0; scanf(&……

筛选求奇数和

摘要:解题思路:n无非就是偶数或者奇数1,假设n为奇数5&nbsp;&nbsp;&nbsp;s=1+3+52,假设n为偶数6&nbsp;&nbsp;&nbsp……

简洁明了的代码

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