Vy Thanh Định- Web Master
- Giới tính : Bài gửi : 228
Tổng Điểm : 544
Điểm Thưởng : 16
Sinh Nhật : 19/05/1990 Bị Dụ Dỗ : 11/09/2009
Tuổi : 34
by Vy Thanh Định 28/9/2009, 21:55
- Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
class BT4
{
public static void Main()
{
int n, s;
Console.Write("Input a whole number:");
n = Convert.ToInt32(Console.ReadLine());
s = 0;
while (n != 0)
{
s = s + n % 10;
n = n / 10;
}
Console.WriteLine("Sum of a number :" + s);
Console.Read();
}
}