题解列表

筛选

校门外的树 (C++代码)

摘要:解题思路:注意事项:参考代码:#include "iostream"#include "cstring"using namespace std;int main(){ int l,m,sum; sum……

Tom数 (C语言代码)

摘要:解题思路:不知道错哪了注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h> int main() { long lon……

DNA (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main() {  int hang,lie;  int a,b,zu,k,w,e,l,……

DNA (C语言代码)

摘要:解题思路:先把第一组输出,其余重复的,少输出一行,孩子以为x是*,结果死活不过,后来把*换成x还不对,最后发现热家的X是大写的注意事项:参考代码:#include <stdio.h>#include ……

【明明的随机数】 (C语言代码)

摘要:解题思路:把重复的变成负数,在排序和输出时跳过注意事项:参考代码:#include <stdio.h>#include<math.h>int main (){int a[100];int i,j,m,……

IP判断 简短

摘要:解题思路:----------------------------------------------每个IP字段不允许前导为0每个IP字段不允许出现负号如果每个IP字段第一位不是数字则判定N如果每个……