摘要:
#include <string.h> #include <iostream> using namespace std; struct STU { char stu_no[18]; int test_seat; int seat; }; int main() { int n,m; struct ST 阅读全文
摘要:
#include <string.h> #include <iostream> using namespace std; int main() { long int num=1000000007,count=0,count_p=0,count_t=0; char * str=new char[100 阅读全文
摘要:
#include <string.h> #include <iostream> using namespace std; int main() { char sell[1005],want[1005]; int s[1005]={0}; int j,n=0; cin>>sell>>want; for 阅读全文
摘要:
#include <iostream> using namespace std; int main() { int n,k,g; int grade[101]={0}; cin>>n; int *k_grade=new int[100005];//稍微大一点 for(int i=0;i<n;i++) 阅读全文