诶亚,这怎么回事儿啊这是
题目 623 [NOIP 2011]数字反转
2024-07-20 09:16:29
|
|
12345678900987654321234
题目 623 [NOIP 2011]数字反转
2024-07-20 08:44:13
|
|
回复 @2018noip必胜! :
#include<bits/stdc++.h> using namespace std; int main(){ int a,b=0; freopen("reverse.in","r",stdin); freopen("reverse.out","w",stdout); cin>>a; while (a) {b=b*10+a%10; a/=10;} cout <<b;} 。。。。。。。。。
题目 623 [NOIP 2011]数字反转
2024-07-19 10:12:03
|
|
对于我把a[j]写成a[i]导致我鼓捣了一上午的感受
|
|
回复 @ShallowDream雨梨 :
#include<cstdio> #include<iostream> using namespace std; int main(){ int a,b=0; freopen("reverse.in","r",stdin); freopen("reverse.out","w",stdout); cin>>a; while (a!=0){ b=b*10+a%10; a/=10; } cout <<b; } 短不短?AC!!
题目 623 [NOIP 2011]数字反转
2019-06-24 07:34:27
|
|
一遍就AC了
题目 623 [NOIP 2011]数字反转
2018-10-02 08:28:04
|
|
回复 @2018noip必胜! :
#include<iostream> #include<cstdio> using namespace std; int main() { freopen("aplusb.in","r",stdin); freopen("aplusb.out","w",stdout); int a,b; cin>>a>>b; cout<<a+b<<endl; return 0; } 呵呵
题目 623 [NOIP 2011]数字反转
2018-09-26 20:22:44
|
|
渣渣程序#include <iostream>
#include <cstdio> #include <cstring> using namespace std; int main(void) { freopen("reverse.in","r",stdin); freopen("reverse.out","w",stdout); long long n = 0;int a[11]={0}; cin>>n; if(n<0){ cout<<"-";n=-n;} for(int i = 1;i++;) { if(a[i-1]==0&&n%10==0){a[i]=n%10; n = n/10;continue;} else{ a[i]=10; cout<<n%10;n = n/10;if(n==0)break; } } }我的该是最短了的吧
题目 623 [NOIP 2011]数字反转
2018-09-15 20:29:13
|
|
用int做的,没用字符串
#include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<iomanip> #include<cmath> using namespace std; int main(){ freopen("reverse.in","r",stdin); freopen("reverse.out","w",stdout); long long int n,n1,n2; int a[12],t=0,t1=0; cin>>n; if(n<0) cout<<'-'; n=abs(n); n2=n; n1=n; for(int i=1;;i++) {n=n/10; t++; if(n==0) break;} for(int i=1;i<=t;i++) {a[i]=n1%10; n1=n1/10;} for(int i=1;;i++) {if(n2%10==0) t1++; n2=n2/10; if(n2%10!=0) break;} for(int i=1+t1;i<=t;i++) cout<<a[i]; return 0; } 很渣的程序 0.003s,仅供参考
题目 623 [NOIP 2011]数字反转
2017-11-13 21:21:29
|
|
勾起了我初学OI时的回忆..........
|
|
菜鸟提供的方案
|
|
guoshiju真的丑
题目 623 [NOIP 2011]数字反转
2017-04-20 20:56:22
|
|
放了3个月没做。。。我简直sb
|
|
没用字符串,他居然用负数坑我。
|
|
身败名裂 死在stl上_(:з」∠)_
题目 623 [NOIP 2011]数字反转
2016-12-07 20:52:08
|
|
stl的使用
|
|
王银鹏是2b.
题目 623 [NOIP 2011]数字反转
2015-12-17 17:16:55
|
|
我居然一遍过了!!!
|
|
hehe
题目 623 [NOIP 2011]数字反转
2015-09-21 20:47:53
|
|
忽然感觉代码好丑……
|