C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:结构体注意事项:参考代码:#include<stdio.h>struct student{ char id[20]; char name[20]; int score1; …… 题解列表 2018年07月03日 0 点赞 0 评论 396 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C语言代码)(我是新手,也是借鉴了很多大佬的程序后写的,简单些) 摘要:解题思路:因为是新手的原因,所以没用函数写,而我之所以发出来是因为,我看到很多大佬写的太高深了,我就想写些简单的,新手可以看的。。。。注意事项:注意结构体的语法参考代码:#include<stdio.…… 题解列表 2020年10月23日 0 点赞 0 评论 378 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C++代码) 摘要:解题思路:用c++感觉很简单,因为有cin cout。注意事项:参考代码:#include<iostream>using namespace std;struct GROUP{ char num[1…… 题解列表 2019年01月08日 0 点赞 0 评论 608 浏览 评分:0.0
[编程入门]结构体之成绩记录 (C语言代码)水经验!! 摘要:解题思路:随便你!!注意事项:无!参考代码:#include<stdio.h>struct stu{ char num[10]; char name[20]; int a; int b; int c;…… 题解列表 2019年05月12日 0 点赞 0 评论 471 浏览 评分:0.0
结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student{ char sno[100]; char name[100]; int gread[3];};void i…… 题解列表 2022年01月04日 0 点赞 0 评论 123 浏览 评分:0.0
[编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct stu{ char num[100]; char name[100]; int score[3];};…… 题解列表 2021年11月11日 0 点赞 0 评论 152 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C++代码) 摘要:```cpp #include using namespace std; #include struct student { string id; string nam…… 题解列表 2020年04月29日 0 点赞 0 评论 330 浏览 评分:0.0
编写题解 1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct Student{char number[10];char name[10];int score[3];};int main…… 题解列表 2024年10月02日 0 点赞 0 评论 167 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:利用结构体数组注意事项:a[i].XX 输入字符数组无& 输入整形数组有& 输入多条数据 要多个变量(grade1 grade2 grade3 ) 数组只是…… 题解列表 2018年11月30日 0 点赞 0 评论 551 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct Stu{ char sno[20]; char name[20]; int grade[3];};inp…… 题解列表 2018年04月03日 0 点赞 0 评论 621 浏览 评分:0.0