can,can,need 摘要:解题思路:#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<stdlib.h>#include<string.h>int main(){…… 题解列表 2022年06月20日 0 点赞 1 评论 535 浏览 评分:9.9
可以看一下 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS 1#include<stdio.h>#include<math.h>int main(){ int n; …… 题解列表 2022年06月20日 0 点赞 0 评论 339 浏览 评分:0.0
简单排序能过什么法忘记了 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS 1#include<stdio.h>#include<math.h>#include<string.h>i…… 题解列表 2022年06月20日 0 点赞 0 评论 323 浏览 评分:0.0
自定义函数之数字后移 摘要:解题思路:前九个是顺序排列,新的数作为数组最后一个元素,然后将数组进行重新排序注意事项:参考代码:#include<stdio.h>int main(){ int i; int j; …… 题解列表 2022年06月20日 0 点赞 0 评论 382 浏览 评分:9.9
密码破译简单粗暴版本 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int i; char c[5]; for(i=0;i<5;i++) { …… 题解列表 2022年06月20日 0 点赞 0 评论 372 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct stu{ char num[100]; char name[100]; int score[3];};…… 题解列表 2022年06月20日 0 点赞 1 评论 204 浏览 评分:6.0
信息学奥赛一本通T1309-回文数-题解(各语言代码) 摘要:**java** ```java import java.util.Scanner; import java.math.BigInteger; public class Main { pu…… 题解列表 2022年06月20日 1 点赞 0 评论 847 浏览 评分:0.0
优质题解 [编程入门]自定义函数之数字后移 摘要:解题思路:根据题意,有n个整数,要使前面各数顺序向后移m个位置,最后m个数变成前面m个数。如果要实现此操作,利用数组会更方便一些,因此定义一个数组arr,数组长度设为100以防数组长度不够导致越界,然…… 题解列表 2022年06月20日 0 点赞 2 评论 1222 浏览 评分:8.9
三种解法hhh 摘要:解题思路:方法一:1 运用等比求和的公式Sn=a1*(1-q^n)/(1-q); 2 两种类型选择 double 和 unsifned long long …… 题解列表 2022年06月20日 0 点赞 0 评论 339 浏览 评分:0.0
1052: [编程入门]链表合并 摘要:解题思路:注意事项:#include<stdio.h> int main() { int n,m,i,j; scanf("%d %d",&n,&m); int inf[n+m][2]; f…… 题解列表 2022年06月20日 0 点赞 0 评论 211 浏览 评分:0.0