nhập n và tính tổng các chữ số của n
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace nhap_n_va_tinhtong_cac_chuso_cua_n { class Program { //nhap n // tinh tong cac chu so cua n static void Main(string[] args) { Console.Write("nhap n : "); int n = int.Parse(Console.ReadLine()); int tong = 0; while (n != 0) { int a = n % 10; tong += a; a = n / 10; n = a; } Console.Write("tong la {0}", tong); Console.ReadLine(); } } } . using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace nhap _n_ va_tinhtong_cac_chuso_cua _n. nhap _n_ va_tinhtong_cac_chuso_cua _n { class Program { //nhap n // tinh tong cac chu so cua n static void Main(string[] args) { Console.Write("nhap n : "); int n = int.Parse(Console.ReadLine());