主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
孙某人
2024年3月28日 15:34
学生成绩管理 题解:上机前最后一个题解
P1052
回复 0
|
赞 0
|
浏览 605
#include <iostream> #include <string.h> #include <math.h> #include <algorithm> using namespace std; typedef struct student{ char num[100]; char class1[20]; char name[20]; double a; double b; double c; double sum; struct student *next; }*student1; v...
huanghu
2024年3月24日 14:39
学生成绩管理 题解:C++
P1052
回复 0
|
赞 0
|
浏览 405
#include <iostream> #include<string> using namespace std; struct student{ string id; string banji; string name; float score[3]; }; int main(){ int n; struct student stu[100]; cin>>n; for(int i = 0; i<n; i++){ cin>>stu[i].id>>stu[i].ba...
张大帅比
2020年1月18日 01:24
能运行,结果输出没问题,但是现实 runtime error
P1052
回复 2
|
赞 0
|
浏览 11.1k
#include <stdio.h> typedef struct{ int Sno; //学号 char clas[50];//班级 char name[50];//姓名 注意!c语言中没有string类型 double c1,c2,c3;//课程1成绩 }student;//学生结构体 student s[50];//定义学生数组结构体全局变量 ...
sincerely_LM
2021年2月27日 15:00
理清逻辑,难度不大
P1052
回复 0
|
赞 1
|
浏览 8.8k
#include <stdio.h> #include <stdlib.h> typedef struct Stu { int Number; char Class[20]; char name[20]; double grade1; double grade2; double grade3; }Stu; double Avg(Stu arr[],int num);//函数声明 int main(int argc, char const *argv[]) { int i = 0 ; int N; S...
李青
2021年1月6日 19:29
学生管理系统,C
P1052
回复 0
|
赞 0
|
浏览 9.0k
#include<stdio.h> struct aaa { char bianhao[20]; char banji[20]; char xingming[20]; double a,b,c; double ave; }; int main() { int n,pos=0; double maxx=0; scanf(&quo...
A1120161820
2020年7月13日 09:32
学生成绩管理(c++)
P1052
回复 0
|
赞 0
|
浏览 9.0k
注意输入输出格式 #include<iostream> #include<cstdio> #include<vector> using namespace std; typedef struct Node{ string sno; string cname; string name; double grade[3]; double ave; }node; int main() { int N; cin >> N; vector<node> vstu; for (int ...
eshell
2020年3月10日 18:03
总是wrong answer,求大佬指点
P1052
回复 0
|
赞 0
|
浏览 7.9k
#include <iostream> #include <algorithm> #include <stdio.h> #include <cstring> #include<string> using namespace std; struct Stu{ string no,cla,name; double a,b,c,avg; }stu[1000]; bool cmp(Stu a,Stu b){ &nb...
LiW97
2020年2月6日 01:05
输入输出均没问题,也写成函数;但提交Compilation Error
P1052
回复 3
|
赞 1
|
浏览 9.3k
#include<stdio.h> #include<malloc.h> int n; struct student{ char id[20]; char class_name[20]; char name[20]; double g1,g2,g3,avg; }; void data_in(struct student *q){ struct student* p=NULL;...
题目
学生成绩管理
题解数量
8
发布题解
热门题解
1
理清逻辑,难度不大
2
输入输出均没问题,也写成函数;但提交Compilation Error
3
学生成绩管理 题解:C++
4
总是wrong answer,求大佬指点
5
能运行,结果输出没问题,但是现实 runtime error
6
学生管理系统,C
7
学生成绩管理 题解:上机前最后一个题解
8
学生成绩管理(c++)