[编程入门]结构体之成绩记录 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void input();void print();struct student{ char num[20];char name[10]…… 题解列表 2019年05月05日 0 点赞 0 评论 316 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:#include<stdio.h> struct student{ char num[50]; char name[50]; int s1; int s2; int s3…… 题解列表 2017年06月13日 3 点赞 2 评论 935 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录(C语言简单代码) 摘要:解题思路:注意事项: 结构体数组参考代码:#include<stdio.h>#include<stdlib.h>struct student //声明结构体{ char …… 题解列表 2022年03月03日 0 点赞 0 评论 234 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:#include struct ble{ char a[100]; //表示学号 char b[100]; //表示姓名 int c[3]; …… 题解列表 2020年05月21日 0 点赞 0 评论 256 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int n;scanf("%d",&n);struct performance{ char xuehao[1…… 题解列表 2020年11月23日 0 点赞 0 评论 231 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C++代码)偷偷混入其中 摘要:解题思路: 偷偷混入其中参考代码:#include<bits/stdc++.h> using namespace std; const int maxn=105; struct stude…… 题解列表 2018年12月04日 0 点赞 0 评论 502 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要: #include struct Student { char xuehao[20]; char xing[20]; int one; …… 题解列表 2019年11月03日 0 点赞 0 评论 367 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录——六行代码 摘要:解题思路:注意事项:参考代码:n = int(input())for i in range(n): l = list(map(str,input().split())) for j in …… 题解列表 2022年04月11日 0 点赞 0 评论 114 浏览 评分:0.0
结构体之成绩记录(结构体数组) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct stu{ char num[20]; char name[20]; int chine…… 题解列表 2024年04月05日 0 点赞 0 评论 94 浏览 评分:0.0
结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct { char num[20]; char name[20]; int score[3…… 题解列表 2024年12月29日 2 点赞 0 评论 224 浏览 评分:0.0