题解列表

筛选

优质题解

A+B+C+D (C语言代码)

摘要:解题思路:  我们看到这道题首先想到的肯定是用for循环来暴力破解例如:#include <stdio.h> void f()            //利用4层for求符合条件的数量 {   ……

蚂蚁感冒 (Java代码)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class T1454{ public static boolean IsCross(int ……

字符逆序 (C语言代码)

摘要:解题思路:自己看注意事项:函数参考代码:#include<stdio.h>#include<string.h>int main() { char str[100]; int i,n; gets(str……

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

摘要:解题思路:直接提交注意事项:参考代码:#include<stdio.h>int main(){    int a,b;    while(~scanf("%d%d", &a, &b))printf("……