题解列表

筛选

回文数字暴力解答

摘要:参考代码:```#include<iostream>#include<algorithm>using namespace std;bool ok;int main(){ int n; cin>>n; ……

简单代码数组交换

摘要:解题思路:数组交换注意事项:参考代码:#include<stdio.h>int main(){    char A[100];    char B[100];    int i;    gets(A)……

整型数据类型存储空间大小

摘要:解题思路:用sizeof解题注意事项:参考代码:#include<stdio.h>int main(){    int a;    short b;    printf("%d %d\n",sizeo……

超级玛丽游戏

摘要:解题思路:暴力解法,直接用printf一行一行输出注意事项:注意每输出完一行加\n换行参考代码:#include <stdio.h>int main(){    printf( "          ……

笨小猴解题思路

摘要:解题思路:注意事项:参考代码:Scanner sc = new Scanner(System.in); String str = sc.next(); int max = 0,min = str.……