Compare commits
No commits in common. "c3f6e61e674f0970f1b11064bf54a28e05f41f40" and "6f9e97b91c7e7c280ea0ee6e4f7bba1ada07c58c" have entirely different histories.
c3f6e61e67
...
6f9e97b91c
|
@ -1,8 +0,0 @@
|
|||
#include<iostream>
|
||||
using namespace std;
|
||||
int main(){
|
||||
int n;
|
||||
cin>>n;
|
||||
cout<<(n%10)<<(n/10%10)<<(n/100);
|
||||
return 0;
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
#include<iostream>
|
||||
using namespace std;
|
||||
int main(){
|
||||
int n;
|
||||
cin>>n;
|
||||
cout<<(n%10)+(n/10%10)+(n/100);
|
||||
return 0;
|
||||
}
|
BIN
两位数交换 .exe
BIN
两位数交换 .exe
Binary file not shown.
8
小杨买书.cpp
8
小杨买书.cpp
|
@ -1,8 +0,0 @@
|
|||
#include<iostream>
|
||||
using namespace std;
|
||||
int main(){
|
||||
int m;
|
||||
cin>>m;
|
||||
cout<<m/13<<" "<<m%13;
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue