-
个人简介
this is 我做的好van的东西
#include<iostream> using namespace std; const int maxn = 114514; struct user{ string name; int dengji; }users[maxn]; int main() { int n , x; cout << "请输入注册用户的数量:"; cin >> n; for(int i = 1;i <= n;i++) { cout << i << "号用户名字:"; cin >> users[i].name; cout << i << "号用户等级:"; cin >> users[i].dengji; } string caozuo; while(true) { cout << "是否退出(是请输入1,否请输入0):"; cin >> caozuo; if(caozuo == "1") { return 0; } cout << "请输入查询用户的号码:"; cin >> x; if(x > n) { cout << "不存在该用户!" << endl; continue; } cout << "该用户名为:" << users[x].name << endl; cout << "该用户等级为:" << users[x].dengji << endl; } }
这个这个这个……还有这个!
#include<bits/stdc++.h> using namespace std; struct student{ string name;//名字 int number;//学号 int Chinese_score;//语文成绩 int maths_score;//数学成绩 int English_score;//英语成绩 int total_score;//总成绩 }students[114514]; int main() { int n; cout << "请输入考生数量:"; cin >> n; for(int i = 1;i <= n;i++) { cout << "请输入" << i << "号考生名字:"; cin >> students[i].name; cout << "请输入" << i << "号考生学号:"; cin >> students[i].number; cout << "请输入" << i << "号考生语文、数学和英语成绩(中间用空格隔开):"; cin >> students[i].Chinese_score >> students[i].maths_score >> students[i].English_score; students[i].total_score = students[i].Chinese_score + students[i].maths_score + students[i].English_score; } while(1) { int caozuo , x; cout << "请输入操作(1为退出,其他数字为继续):"; cin >> caozuo; if(caozuo == 1) { return 0; } cout << "请输入要查询的考生编号:"; cin >> x; if(x > n) { cout << "不存在此考生!" << endl; continue; } cout << "---------------------" << endl; cout << "该考生名字:" << students[x].name << endl; cout << "该考生学号:" << students[x].number << endl; cout << "该考生的语文成绩:" << students[x].Chinese_score << endl; cout << "该考生的数学成绩:" << students[x].maths_score << endl; cout << "该考生的英语成绩:" << students[x].English_score << endl; cout << "该考生总成绩:" << students[x].total_score << endl; cout << "---------------------" << endl; } return 0; }
-
通过的题目
-
最近活动
- LIS(贪心解法) IOI
- 复习:最长上升子序列原题(DP解法 多题预警) IOI
- 数字三角形模型 IOI
- 中心团队A班开学测试 IOI
- 中心团队集训day5 下午 IOI
- 中心团队集训day5 上午 供题人:宋承璋 IOI
- 中心团队集训day4 下午 OI
- 中心团队集训day4 上午 IOI
- 中心团队A期末小测 OI
- J组赛前模拟7 20241001 IOI
- 2024少年宫周日19:10-20:30高级班期末考核 IOI
- 第三届小云雀杯入门组比赛 OI
- 少年宫周日晚高级班测试 IOI
- 周六下午中心团队 IOI
- 周日下午东山中级班——高精度练习 IOI
- 少年宫周日中级1、2班(2023/3/5) 作业
-
最近编写的题解
This person is lazy and didn't write any solutions.
题目标签
- 动态规划
- 12
- 竞赛
- 9
- 语言基础
- 9
- 二维数组
- 9
- NOIP
- 7
- 搜索
- 7
- 其他
- 5
- 普及组
- 4
- 高精度
- 4
- LIS
- 4
- 递归
- 3
- 年份
- 3
- 贪心
- 3
- 2015
- 2
- USACO
- 2
- 1.5
- 2
- NOIP 提高组
- 2
- DP
- 2
- 递推
- 2
- DFS
- 2