编写题解 1050: [编程入门]结构体之成绩记录 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args…… 题解列表 2024年03月08日 0 点赞 0 评论 245 浏览 评分:9.9
注意有个空格 摘要:注意事项:注意有个空格!!!!!!!!!!!!!最后一个数字后边有个空格!!!!!!!printf("%d ",stu[i].score[2]);参考代码:#include<stdio.h>#defi…… 题解列表 2024年03月03日 0 点赞 0 评论 107 浏览 评分:0.0
没有写input和print函数 摘要:解题思路:注意事项:参考代码:#include#includetypedef struct { char name[10]; char number[10]; int grade[3…… 题解列表 2024年02月23日 0 点赞 0 评论 110 浏览 评分:9.9
题解 1050: [编程入门]结构体之成绩记录 摘要:##**思路** 简单的字符串与整数输入输出,读入一个输出一个即可。 ##**代码** ```cpp #include using namespace std; char a[10005]…… 题解列表 2024年01月30日 0 点赞 0 评论 68 浏览 评分:6.0
结构体之成绩记录 摘要:解题思路:定义一个结构体初始化结构体数组利用结构体数组实现数据存入再输出即可注意事项:参考代码:#include<iostream>using namespace std;struct student…… 题解列表 2024年01月27日 0 点赞 0 评论 54 浏览 评分:0.0
C语言--study||O.o 摘要:参考代码:include<stdio.h> struct student { char number[20]; char name[10]; int subject1…… 题解列表 2024年01月22日 0 点赞 0 评论 111 浏览 评分:9.9
1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:确定输出五个数参考代码:n = int(input())def i(n): for i in range(n): s = list(map(str, input…… 题解列表 2024年01月09日 0 点赞 0 评论 60 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录(Python) 摘要:解题思路:我认为核心难点就是如何用列表表示“二维数组”,如果知道如何表示的话,就差不多了。注意事项:无参考代码:n = int(input())ls =[]for i in range(n): …… 题解列表 2024年01月01日 0 点赞 0 评论 147 浏览 评分:0.0
c代码记录之结构体成绩记录--函数传参 摘要: #include struct Student{ char xuehao[30],name[30]; int a,b,c; }; …… 题解列表 2023年12月29日 0 点赞 0 评论 95 浏览 评分:0.0
结构体之成绩记录(java类) 摘要:多的不说,直接上代码import java.util.Scanner; class Grade{ int oneSub; int twoSub; int thre…… 题解列表 2023年12月27日 0 点赞 0 评论 37 浏览 评分:0.0