Đề Bài : Nhập Vào 2 Số Nguyên a,b xuất ra màn hình (tổng,hiệu,tích,thương) của 2 số
Bài Tập Windows Forms
*Bài Tập Về Xây Dựng Lớp -Đối Tượng
Code Xử Lý:
class Program
{
static void Main(string[] args)
{
int a, b, tong, hieu, tich, thuong;
Console.WriteLine("DECADE");
Console.Write("nhap a=");
a = Convert.ToInt32(Console.ReadLine());
Console.Write("nhap b=");
b = Convert.ToInt32(Console.ReadLine());
tong = a + b;
Console.WriteLine("tong la:" + tong);
hieu = a - b;
Console.WriteLine("hieu la:" + hieu);
tich = a * b;
Console.WriteLine("tich la:"+tich);
thuong = a / b;
Console.WriteLine("thuong la:" + thuong);
Console.ReadLine();
}
}
}
*Bài Tập Về Xây Dựng Lớp -Đối Tượng
Code Xử Lý:
class Program
{
static void Main(string[] args)
{
int a, b, tong, hieu, tich, thuong;
Console.WriteLine("DECADE");
Console.Write("nhap a=");
a = Convert.ToInt32(Console.ReadLine());
Console.Write("nhap b=");
b = Convert.ToInt32(Console.ReadLine());
tong = a + b;
Console.WriteLine("tong la:" + tong);
hieu = a - b;
Console.WriteLine("hieu la:" + hieu);
tich = a * b;
Console.WriteLine("tich la:"+tich);
thuong = a / b;
Console.WriteLine("thuong la:" + thuong);
Console.ReadLine();
}
}
}
Kết Quả Bài Tập
0 comments:
Post a Comment