辗转相。。。。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int gcd(int a,int b){ if(a%b==0) { return b; }else{ …… 题解列表 2023年12月18日 0 点赞 0 评论 486 浏览 评分:9.9
.................. 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[3][3]; for(int i=0;i<3;i++) { for(…… 题解列表 2023年12月18日 0 点赞 0 评论 437 浏览 评分:0.0
字符串连接 摘要:解题思路:注意事项:参考代码#include<stdio.h>#include<string.h>int main() { char arr1[100]; gets(arr1); i…… 题解列表 2023年12月17日 0 点赞 0 评论 471 浏览 评分:0.0
跟我徐海东 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int f[100000];int a[100000];int count;int max=0,A;int c[100];int mai…… 题解列表 2023年12月17日 0 点赞 0 评论 875 浏览 评分:9.9
编写题解 3006: 适合晨练 摘要:解题思路:#include <bits/stdtr1c++.h>using namespace std;int main(){ int t; cin>>t; if(25<=t && …… 题解列表 2023年12月17日 0 点赞 1 评论 623 浏览 评分:9.0
题解 1050: [编程入门]结构体之成绩记录(超超超级简短) ```c#include#includestructstudent{charshuju[20];charname[20];intchinese;intenglish;intmath;};structstudenta[100];voidinput(inti){scanf("%s%s%d%d%d", 题解列表 2023年12月17日 0 点赞 0 评论 488 浏览 评分:6.0
直接插入排序,折半插入排序、希尔排序 摘要:直接插入排序#include <stdio.h> int main() { int a[10], key; // 输入已排序的数组 for (int i = 0…… 题解列表 2023年12月17日 0 点赞 0 评论 508 浏览 评分:0.0
题解 1050: [编程入门]结构体之成绩记录(超超超级简单) ```c#include#includestructstudent{charshuju[20];charname[20];intchinese;intenglish;intmath;};structstudenta[100];voidinput(inti){scanf("%s%s%d%d%d", 题解列表 2023年12月17日 0 点赞 0 评论 414 浏览 评分:0.0
题解 2945: 素数对 ```c#include#include//函数用于检查一个数是否是素数intis_prime(intnum){if(num 题解列表 2023年12月17日 0 点赞 0 评论 722 浏览 评分:0.0
题解 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 题解列表 2023年12月17日 0 点赞 0 评论 651 浏览 评分:6.0