题解列表

筛选

辗转相。。。。

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int gcd(int a,int b){    if(a%b==0)    {        return b;    }else{ ……

..................

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a[3][3];    for(int i=0;i<3;i++)    {        for(……

字符串连接

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

跟我徐海东

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int f[100000];int a[100000];int count;int max=0,A;int c[100];int mai……

编写题解 3006: 适合晨练

摘要:解题思路:#include <bits/stdtr1c++.h>using namespace std;int main(){    int t;    cin>>t;    if(25<=t && ……

题解 2945: 素数对

```c#include#include//函数用于检查一个数是否是素数intis_prime(intnum){if(num

题解 2944: 图像旋转翻转变换

```c#include#include#defineMAX_SIZE100voidrotate90Clockwise(intmat[MAX_SIZE][MAX_SIZE],int*m,int*n){intret[MAX_SIZE][MAX_SIZE];for(inti=0;i<*n;++i){for