结构体之成绩记录(结构体数组) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct stu{ char num[20]; char name[20]; int chine…… 题解列表 2024年04月05日 0 点赞 0 评论 197 浏览 评分:0.0
高级无磨损 崭新出厂 摘要:解题思路:注意事项:可以把成绩定义成int型参考代码:#include <stdio.h>struct Student{ char num[20]; char name[20]; float scor…… 题解列表 2024年04月02日 0 点赞 0 评论 242 浏览 评分:9.9
题目 1050: [编程入门]结构体之成绩记录 摘要:#include <stdio.h> // 定义学生结构体 typedef struct { char id[20]; char name[20]; int s…… 题解列表 2024年03月30日 0 点赞 0 评论 147 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录c语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>/* run this program using the console pauser or …… 题解列表 2024年03月18日 0 点赞 0 评论 167 浏览 评分:0.0
结构体之成绩记录-题解超简单(Python代码) 摘要:join()函数: 语法:sequence.join(string) sequence -> 用于连接的字符 string -> 字符串序列 描述:将序列中的元素以指…… 题解列表 2024年03月17日 0 点赞 0 评论 263 浏览 评分:9.9
还算还算还算清晰 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void input();void print();struct student{ char number[100]; ch…… 题解列表 2024年03月17日 0 点赞 0 评论 186 浏览 评分:9.9
编写题解 1050: [编程入门]结构体之成绩记录 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args…… 题解列表 2024年03月08日 0 点赞 0 评论 404 浏览 评分:9.9
注意有个空格 摘要:注意事项:注意有个空格!!!!!!!!!!!!!最后一个数字后边有个空格!!!!!!!printf("%d ",stu[i].score[2]);参考代码:#include<stdio.h>#defi…… 题解列表 2024年03月03日 0 点赞 0 评论 216 浏览 评分:0.0
没有写input和print函数 摘要:解题思路:注意事项:参考代码:#include#includetypedef struct { char name[10]; char number[10]; int grade[3…… 题解列表 2024年02月23日 0 点赞 0 评论 211 浏览 评分:9.9
题解 1050: [编程入门]结构体之成绩记录 摘要:##**思路** 简单的字符串与整数输入输出,读入一个输出一个即可。 ##**代码** ```cpp #include using namespace std; char a[10005]…… 题解列表 2024年01月30日 0 点赞 0 评论 187 浏览 评分:6.0