主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
孙某人
2024年3月22日 19:34
学生查询 题解:
P1432
回复 0
|
赞 0
|
浏览 457
#include <iostream> #include <string.h> #include <math.h> #include <algorithm> using namespace std; typedef struct student{ int a; char b[200]; char c[40]; int d; struct student *next; }student,*Lnode; void find(Lnode s,int aa){ while(s!=NU...
小王桐学
2024年3月4日 17:18
学生查询 题解:C
P1432
回复 0
|
赞 0
|
浏览 501
#include <stdio.h> typedef struct{ int num; char name[120]; char sex[40]; int age; }Student; int main() { int m,n,i,s; while(scanf("%d",&m) != EOF) { for(i = 0; i < m; i++) //m个样例 { scanf("%d",&n); int j; Student stu[20]; for(j = 0; j...
happyday
2022年4月6日 15:53
使用结构体存取学生信息
P1432
回复 0
|
赞 0
|
浏览 4.5k
#include <bits/stdc++.h> using namespace std; struct Student{ int id; string name; string gender; int age; }stu[25]; int main(){ int m,n,num; while(cin>>m){ while(m--){ cin>>n; for(int i=1; i<=n; i++){...
JohnWang
2021年4月18日 18:33
巧用Map查找
P1432
回复 0
|
赞 1
|
浏览 6.8k
#include <iostream> #include <map> #include <string> using namespace std; int main() { int m, n, id; string info; map<int, string> M; cin >> m; for(int i = 0;i < m;i++) { cin >> n; for(int j = 0;j < n;j++...
A1120161820
2020年3月6日 11:14
学生查询(c++)
P1432
回复 0
|
赞 0
|
浏览 9.2k
#include<iostream> #include<string> #include<vector> using namespace std; typedef struct node{ int num; string name; string sex; int age; }stu; int main() { int m; cin >> m; while (m--) { int N; cin >> N; vector<stu> vstu; int...
题目
学生查询
题解数量
5
发布题解
热门题解
1
巧用Map查找
2
学生查询 题解:
3
学生查询(c++)
4
学生查询 题解:C
5
使用结构体存取学生信息