天天看點

【HUSTOJ】1005: 位數對調

1005: 位數對調

Time Limit:  1 Sec   Memory Limit:  128 MB

Submit:  441   Solved:  200

原題連結

Description

輸入一個三位自然數,然後把這個數的百位數與個位數對調,輸出對調後的數

Input

輸入一行,隻有一個整數x(100<=x<=999)。

Output

輸出隻有一行,包括1個整數,注意不要有前置0的存在。

Sample Input

123      

Sample Output

321      

HINT

Source

#include<iostream>
using namespace std;
int main()
{
	int a,dearvee;
	cin>>a;
	dearvee=a%10*100+a/10%10*10+a/100;   //這個可以避免有前導零。而且好了解。
	cout<<dearvee<<endl; 
	return 0;
 } 
           

繼續閱讀