摘要:
除基取余法 include using namespace std; stack s; int main(){ long long a,b; int d; cin a b d; long c=a+b; while(c 0){ s.push(c%d); c=c/d; } while(!s.empty( 阅读全文
摘要:
25/25,一遍过了,很开心。 include using namespace std; struct record{ string id; string in_time; string out_time; }; vector records; void solve(){ int m; cin m; 阅读全文
摘要:
这一题总算是把C++的重载活学活用了一回,节省了很多脑细胞。 include using namespace std; struct student{ string name; string code; int score; //operator score students; void solve 阅读全文
摘要:
这题比较简单,没有调试,一次通过,虽然简单,不过也有借鉴意义。 include using namespace std; const int N=1005; long long code[N]; int seat[N]; void solve(){ int k; long long num; int 阅读全文
摘要:
12/25 include using namespace std; void solve(){ int A,B,coef,exp; cin A B; if(B==1) cout A B){ if(B!=0){ coef=A B;exp=B 1; cout 阅读全文