1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:#include<stdio.h> struct inf { char num[15]; char name[15]; int a; in…… 题解列表 2022年06月20日 0 点赞 0 评论 106 浏览 评分:0.0
不用函数的,非常容易理解的,前面的题做过1/3的就能看懂 摘要:解题思路:注意事项:参考代码:a=int(input())for i in range(a): i=input().split() for l in range(len(i)): …… 题解列表 2022年05月26日 0 点赞 0 评论 275 浏览 评分:5.0
结构体是什么也没有很理解 摘要:解题思路:第三题才完成我已经快用了一个小时,实在很不熟练而且我看了题解注意事项:参考代码:def inp(): n=int(input()) while (n>0): jl=…… 题解列表 2022年05月24日 0 点赞 0 评论 191 浏览 评分:0.0
结构体-学生成绩录入 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h> struct Ymd{ char xh[50]; char name[50]; int a[3…… 题解列表 2022年05月16日 0 点赞 0 评论 193 浏览 评分:9.9
1050:[编程入门]结构体之成绩记录 摘要:```c #include #define Max 100 typedef struct sort{ char id[100]; char name[100]; int score…… 题解列表 2022年05月09日 0 点赞 0 评论 167 浏览 评分:0.0
[编程入门]结构体之成绩记录 题解 摘要:解题思路:这题就是简单的结构体输入输出。注意事项:中间要用“,”分隔开,最后一个科目后不用“,”要换行。参考代码:#include<bits/stdc++.h>using namespace std;…… 题解列表 2022年05月06日 0 点赞 0 评论 139 浏览 评分:0.0
结构体之成绩记录(简易) 摘要:解题思路:根据题目样例,我们可以发现输入和输出差的是数之间的逗号,所以我们可以直接进行输出;(其实很想吐槽啊)注意事项:是英文逗号参考代码:#include<bits/stdc++.h>using n…… 题解列表 2022年05月01日 0 点赞 0 评论 305 浏览 评分:9.9
编写题解 1050: [编程入门]结构体之成绩记录——六行代码 摘要:解题思路:注意事项:参考代码:n = int(input())for i in range(n): l = list(map(str,input().split())) for j in …… 题解列表 2022年04月11日 0 点赞 0 评论 180 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ string id; string name; int …… 题解列表 2022年03月21日 0 点赞 0 评论 228 浏览 评分:0.0
结构体之成绩记录(Java语言) 摘要:解题思路:注意事项:参考代码:public static class student{ private String No=""; private String Name=""; …… 题解列表 2022年03月20日 0 点赞 0 评论 236 浏览 评分:9.9