2020: 学生查询
Posted yueruifeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2020: 学生查询相关的知识,希望对你有一定的参考价值。
#include <cstdio> #include <iostream> #include <vector> #include <string> using namespace std; typedef struct student { int no; string name; string sex; int age; }stu; int main() { int n; int m; int x; vector<stu> s; vector<stu> ans; cin >> n; //scanf("%d", &n); while(n--) { scanf("%d", &m); s.resize(m); for(int i = 0; i < m; ++i) { cin >> s[i].no >> s[i].name >> s[i].sex >> s[i].age; //scanf("%d %s %s %d", &s[i].no, s[i].name.c_str(), s[i].sex.c_str(), &s[i].age); } scanf("%d", &x); for(int i = 0; i < m; ++i) { if(s[i].no == x) { ans.push_back(s[i]); cout << s[i].no << " " << s[i].name<< " " << s[i].sex<< " " << s[i].age << endl; //printf("%d %s %s %d ", s[i].no, s[i].name.c_str(), s[i].sex.c_str(), s[i].age); } } } /*for(int i = 0; i < ans.size(); ++i) { printf("%d %s %s %d ", ans[i].no, ans[i].name.c_str(), ans[i].sex.c_str(), ans[i].age); } ans.clear();*/ return 0; }
以上是关于2020: 学生查询的主要内容,如果未能解决你的问题,请参考以下文章
HTML5期末大作业:餐饮美食网站设计——咖啡(10页) HTML+CSS+JavaScript 学生DW网页设计作业成品 web课程设计网页规划与设计 咖啡网页设计 美食餐饮网页设计...(代码片段