December 22, 2018
Total with reverse
Threads: Enter an integer n. The sum of n and its reverse number.
Input: Some n.
Output: The total to be calculated.
For example:
input: 123 output: 444
You are not logged in? Log in to Submit Now!
7 Comments
Add a Comment
You must be logged in to post a comment.
#include
long int daonguoc(long int n)
{
long int n2;
int x;
while(n>0)
{
x=n % 10;
n2=n2*10+x;
n/=10;
}
return n2;
}
int main()
{
long int n;
scanf(“%ld”, &n);
printf(“%ld”, daonguoc(n)+n);
}
//sao test lại sai hả anh?
bạn so sánh test ouput và your output để nghĩ xem nhé.
#include
int main(){
long int n, o, x, z=0;
scanf(“%li”, &n);
o=n;
long int i=0;
while(i<=n){
if(n%10==0){
while(i<=n&&n%10==0){
i++;
x=n-10*i;
if(x==0){
printf("");
n=i;
i=0;
continue;
}
}}else
{
break;
}
}
while(i<=n){
while(i<=n){
i++;
x=n-10*i;
if(0<n&&n<10){
x=n;
z+=x;
printf("%li", o+z);
return 0;
}
if(0<=x&&x<10){
break;
}
}
z+=x;
z=z*10;
n=i;
i=0;
continue;}
}
confidence overcome every case
lỗi running rồi ad ơi
sao lâu lâu bị lỗi running á
mong ad khắc phục
Các bạn bình tĩnh nhé, lượng submit đã bị hết.
Đã khắc phục nhé.