strlen的灵活运用 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,n,m; char a[20],b[20]; …… 题解列表 2022年06月20日 0 点赞 0 评论 386 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:#include<stdio.h> struct inf { char num[15]; char name[15]; int a; in…… 题解列表 2022年06月20日 0 点赞 0 评论 299 浏览 评分:0.0
通俗易懂的数据处理方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,i,k,b[100]; scanf("%d",&a); for(i=0;i<=4;i++) { k…… 题解列表 2022年06月20日 0 点赞 0 评论 361 浏览 评分:0.0
!!!记住多行输入的方法!!! 摘要:解题思路:注意事项:参考代码:import syswhile True: line=sys.stdin.readline() if not line: break fo…… 题解列表 2022年06月20日 0 点赞 0 评论 404 浏览 评分:0.0
1051: [编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct inf { char num[15]; char name[15]; int a; …… 题解列表 2022年06月20日 0 点赞 0 评论 320 浏览 评分: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 评论 274 浏览 评分:0.0
三种解法hhh 摘要:解题思路:方法一:1 运用等比求和的公式Sn=a1*(1-q^n)/(1-q); 2 两种类型选择 double 和 unsifned long long …… 题解列表 2022年06月20日 0 点赞 0 评论 371 浏览 评分:0.0
信息学奥赛一本通T1309-回文数-题解(各语言代码) 摘要:**java** ```java import java.util.Scanner; import java.math.BigInteger; public class Main { pu…… 题解列表 2022年06月20日 1 点赞 0 评论 872 浏览 评分:0.0
密码破译简单粗暴版本 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int i; char c[5]; for(i=0;i<5;i++) { …… 题解列表 2022年06月20日 0 点赞 0 评论 403 浏览 评分:0.0
简单排序能过什么法忘记了 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS 1#include<stdio.h>#include<math.h>#include<string.h>i…… 题解列表 2022年06月20日 0 点赞 0 评论 345 浏览 评分:0.0