VD: Nhập 15234 Kết quả =15234+43251=58485
- Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
class bai8
{
public static void Main()
{
int n, s, d;
Console.Write("Nhap vao mot so: ");
n = Convert.ToInt32(Console.ReadLine());
s = n;
d = 1;
while (n != 0)
{
n = n / 10;
if (n != 0)
d = d * 10;
}
n = s;
while (n != 0)
{
s = s + d * (n % 10);
n = n / 10;
d = d / 10;
}
Console.Write("Tong cua n va so dao nguoc: " + s);
Console.Read();
}
}