摘要:
#include<iostream> #include<map> using namespace std; int main(){ map<int,int> a; int n,ans,mn; cin>>n; mn=1000; for(int i=1;i<=n;i++){ int x; cin>>x; 阅读全文
摘要:
#include <iostream> //#include <> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ using namespace 阅读全文
摘要:
#include<iostream> #include<vector> using namespace std; struct student{ int id;//学号 string name;//名字 int age;//年龄 int grade;//班级 }s; void xitong(){ c 阅读全文