题解列表

筛选

绝对最简单(Java代码)

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

【金明的预算方案】 (C语言代码)

摘要:解题思路:我这算是瞎猫碰到死耗子了吧。。。注意事项:本来就是试一试竟然对了。。。参考代码#include<stdio.h>int main(){ int max(int a,int b); int i……

【密码】 (C语言代码)

摘要:解题思路:随意看看注意事项:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h>int main(){ int M,p; scanf("%……

统计字符数 (C语言代码)

摘要:解题思路:注意事项:定义了一个void Count(char [],int)函数用于统计各字符串中各个英文字母的个数,并找出最大值输出参考代码:#include<string.h> #include……