[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>struct student{ char number[15]; c…… 题解列表 2020年11月18日 0 点赞 0 评论 316 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C++代码)二维数组解答 摘要: 首先定义一个二维数组,输入,再控制输出即可。 #include using namespace std; int main() { string a[100][5] in…… 题解列表 2020年02月20日 0 点赞 0 评论 239 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct{ char number[100],name[100]; int a,b,c; }stu[100]; vo…… 题解列表 2017年10月22日 0 点赞 0 评论 717 浏览 评分:0.0
结构体之成绩记录(指针) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct stu{ char num[20]; char name[…… 题解列表 2024年04月05日 0 点赞 0 评论 80 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:参考代码:#include <stdio.h>#include <stdlib.h>struct student{char id[20];char name[20];int a;int b;int c…… 题解列表 2017年08月22日 0 点赞 0 评论 895 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:```c #include #include typedef struct{ char num[10]; char name[10]; int score[3]; }stu; …… 题解列表 2020年03月06日 0 点赞 0 评论 250 浏览 评分:0.0
[编程入门]结构体之成绩记录 摘要:解题思路:偷懒一下,写一个函数注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct student{ string xh,nam…… 题解列表 2023年05月20日 0 点赞 0 评论 55 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:n = eval(input())s = []for i in range(n): s.append(input())for i in s: l = '…… 题解列表 2022年02月22日 0 点赞 0 评论 116 浏览 评分:0.0
[编程入门]结构体之成绩记录 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct input{ char num[10]; char name[20]; int a,b,c;};int main(){ s…… 题解列表 2019年05月09日 0 点赞 0 评论 293 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:#include<stdio.h> #include<string.h> int main(){ int N; char input[100]; scanf("%d"…… 题解列表 2018年10月06日 1 点赞 0 评论 633 浏览 评分:0.0