题解列表

筛选

发工资咯 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include "stdio.h"int qianshu(int n);int main(){ int n; while(scanf("%d",&n)&&n) {  i……

整除的尾数 (Java代码)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] arg……

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

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

校门外的树 (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……