题解列表

筛选

DNA (C语言代码)

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

DNA (C语言代码)

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

Tom数 (C语言代码)

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

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

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

【回文数(二)】 (C语言代码),思路记录

摘要:解题思路:首先明确题意,回文检查就是对一个数进行来回相加并对结果进行来回相加,直到结果中出现回文数(判断成功)或者计算步骤超过30(判断失败)结束,并输出相应的结果。提供int类型的两个数组用来存储用……