题解列表

筛选

3031: 分解因数

摘要:解题思路:注意事项:参考代码:#include <iostream> #include <stdlib.h> #include <stdbool.h> #include <stdio.h> #……

1017: [编程入门]完数的判断

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    int i, j, n, sum;    cin >>……

[编程入门]自定义函数之数字后移

摘要:扩充挪到前面的代码先输出,没动的代码先输出,但是内存可能不够参考代码: #include<stdio.h>int a[100000];int main(){    int n,m;    scanf(……

普普通通的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ int n, j, a[1001],l; scanf("%d",&n); for ( j = 1; j ……

详细解释我的代码这么写的原因

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>//因为我下面有用strlen( )函数,所以需要用头文件“#include<string.h>”/……

2000-普普通通的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,t; scanf("%d",&n); for (int i = 0;i<n;i++) { if ……

1480-普普通通的解题方法

摘要:解题思路:注意事项:用scanf写输入格式时,如果只想写一行,注意两个%d之后加一个空格再接%c。参考代码:#include<stdio.h>int ch(char c){ if (c == &#39……