题解列表

筛选

【偶数求和】 (C语言代码)

摘要:解题思路:还是for循环和标志变量的使用注意事项:参考代码:要善于调适#include<stdio.h>#include<stdlib.h>int main(){ int a,b,c,d; int ……

简单的a+b (C语言代码)

摘要:解题思路:1.注意实现的是a与b相加的功能注意事项:1.在输入函数scanf需要注意后面要有取地址符参考代码:#include<stdio.h>int main(){   int a,b;   int……