[编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:a=int(input())foriinrange(a): b=input().split()  …… 题解列表 2024年12月01日 0 点赞 0 评论 202 浏览 评分:10.0
1050: [编程入门]结构体之成绩记录(python) 摘要:##1050:[编程入门]结构体之成绩记录对python来说还是很好实现的~~~pythonforiinrange(int(input())):print(','.join(map(str,[ifor…… 题解列表 2024年10月24日 0 点赞 0 评论 47 浏览 评分:0.0
题目 1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h> voidinput();voidprint();intn;structinforma…… 题解列表 2024年10月06日 0 点赞 0 评论 196 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>structStudent{charnumber[10];charname[10];intscore[3];};intmai…… 题解列表 2024年10月02日 0 点赞 0 评论 75 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录(指针) 摘要:#include<stdio.h> //引入标准输入输出头文件//定义学生结构体structStudent{ c…… 题解列表 2024年10月02日 0 点赞 0 评论 46 浏览 评分:0.0
1050:结构体之成绩记录 #C++ 摘要:1.id类型必须string2.多行输入注意换行符3.```cppfor(inti=0;i<3;++i)std::cin>>student.scores[i];可以用:std::ci…… 题解列表 2024年09月17日 0 点赞 0 评论 83 浏览 评分:9.9
1050: [编程入门]结构体之成绩记录 题解25行代码简洁版 摘要:```c#includetypedefstructstudent{charid[100];charname[100];intyuwen,shuxue,yingyu;}Student;voidcreat…… 题解列表 2024年08月05日 0 点赞 0 评论 43 浏览 评分:0.0
结构清晰明了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>typedefstruct{ char…… 题解列表 2024年07月31日 0 点赞 0 评论 31 浏览 评分:0.0
: [编程入门]结构体之成绩记录c程序 摘要:#include<stdio.h>structdey{ intyear; intmonth; intday;}runnian;intm…… 题解列表 2024年07月26日 0 点赞 0 评论 63 浏览 评分:0.0
c语言简洁的解题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>main(){intn,i=0;scanf("%d",&n);structstu{charid[…… 题解列表 2024年07月19日 0 点赞 0 评论 76 浏览 评分:9.9