题解列表

筛选

Tom数 (C语言代码)

摘要:解题思路:注意事项:参考代码:/*每行一个整数(<2^32). 输出:每行一个输出,对应该数的各位数之和. */#include <stdio.h>int main(){ long int i,n,s……

IP判断 (C语言代码)

摘要:解题思路:goto 语句 可能我的有点麻烦注意事项:参考代码:#include <stdio.h>#include <math.h>#include <string.h>int main(){ int……

直接点提交 不要问

摘要:解题思路:注意事项:参考代码: zhi          jie        dian        ti        jiao……

猜猜这是啥?

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() {  char str[100],str2[100];  gets(str);  int i,s=0;……

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

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){    printf("input a and b:\n");    scanf("%d %d",&a,&b);……