题解列表

筛选

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

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a,b,c;scanf("%f,%f",&a,&b);c=a+b;printf("%f",c);retur……

【亲和数】 (C语言代码)

摘要:注意事项:各位智商都比我高,我就不BB了参考代码:代码1: (我已经很努力了,但还是很长O.O)#include<stdio.h>int main(){    int M,a,b,sum_a,sum_……