密码破译简单粗暴版本 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int i; char c[5]; for(i=0;i<5;i++) { …… 题解列表 2022年06月20日 0 点赞 0 评论 339 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct stu{ char num[100]; char name[100]; int score[3];};…… 题解列表 2022年06月20日 0 点赞 1 评论 190 浏览 评分:6.0
信息学奥赛一本通T1309-回文数-题解(各语言代码) 摘要:**java** ```java import java.util.Scanner; import java.math.BigInteger; public class Main { pu…… 题解列表 2022年06月20日 1 点赞 0 评论 819 浏览 评分:0.0
优质题解 [编程入门]自定义函数之数字后移 摘要:解题思路:根据题意,有n个整数,要使前面各数顺序向后移m个位置,最后m个数变成前面m个数。如果要实现此操作,利用数组会更方便一些,因此定义一个数组arr,数组长度设为100以防数组长度不够导致越界,然…… 题解列表 2022年06月20日 0 点赞 2 评论 1181 浏览 评分:8.9
三种解法hhh 摘要:解题思路:方法一:1 运用等比求和的公式Sn=a1*(1-q^n)/(1-q); 2 两种类型选择 double 和 unsifned long long …… 题解列表 2022年06月20日 0 点赞 0 评论 307 浏览 评分: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 评论 188 浏览 评分:0.0
暴力开解 穷举 摘要:解题思路:注意事项代码:。#include<stdio.h>#include<math.h>int main(){ int a,b,c,d; double x; scanf("%d%d…… 题解列表 2022年06月20日 0 点赞 0 评论 421 浏览 评分:8.0
1051: [编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct inf { char num[15]; char name[15]; int a; …… 题解列表 2022年06月20日 0 点赞 0 评论 229 浏览 评分:0.0
!!!记住多行输入的方法!!! 摘要:解题思路:注意事项:参考代码:import syswhile True: line=sys.stdin.readline() if not line: break fo…… 题解列表 2022年06月20日 0 点赞 0 评论 325 浏览 评分:0.0
淘淘吃苹果问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10]; int n,sum=0; for(int i=0;i<10;i++){ …… 题解列表 2022年06月20日 0 点赞 0 评论 761 浏览 评分:9.9