BÀI 1 IN DÒNG CHỮ "HELLO WORLD"
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CSharp_Bai1_HieuMaster
{
public class Program
{
static void Main(string[] args)
{
Console.OutputEncoding = Encoding.UTF8;
Console.WriteLine("Hello World");
Console.WriteLine("\n=============================================\n");
Console.WriteLine("Hieu Master xin chào các bạn");
Console.ReadKey();
}
}
}
BÀI 2 TÌM TỔNG HAI SỐ
BÀI 3 TÌM KẾT QUẢ CÁC PHÉP TOÁN SAU VÀ HIỂN THỊ TRÊN MÀN HÌNH CONSOLE
-1 + 4 * 6 (35 + 5) % 7 14 + -4 * 6 / 11
2 + 15 / 6 * 1 - 7 % 2
GIẢI
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CSharp_Bai3_HieuMaster
{
internal class Program
{
public static void Main(string[] args)
{
Console.OutputEncoding = Encoding.UTF8;
Console.WriteLine("Đề bài: Tìm kết quả các phép toán sau và hiển thị trên màn hình console");
Console.WriteLine("-1 + 4 * 6");
Console.WriteLine("(35 + 5) % 7");
Console.WriteLine("14 + -4 * 6 / 11");
Console.WriteLine("2 + 15 / 6 * 1 - 7 % 2");
Console.WriteLine("\n======================================================================\n");
Console.Write("Kết quả của phép tính -1 + 4 * 6 là: ");
Console.WriteLine(-1 + 4 * 6);
Console.Write("Kết quả của phép tính (35 + 5) % 7 là: ");
Console.WriteLine((35 + 5) % 7);
Console.Write("Kết quả của phép tính 14 + -4 * 6 / 11 là: ");
Console.WriteLine(14 + -4 * 6 / 11);
Console.Write("Kết quả của phép tính 2 + 15 / 6 * 1 - 7 % 2 là: ");
Console.WriteLine(2 + 15 / 6 * 1 - 7 % 2);
Console.WriteLine("\n======================================================================\n");
Console.WriteLine("Hiếu Master chúc các bạn học tốt");
Console.ReadKey();
}
}
}
BÀI 4 TRÁO ĐỔI GIÁ TRỊ CỦA HAI SỐ
Giải
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CSharp_Bai4_HieuMaster
{
internal class Program
{
static void Main(string[] args)
{
Console.OutputEncoding = Encoding.UTF8;
Console.WriteLine("Đề bài: Tráo đổi giá trị hai số");
Console.WriteLine("\n----------------------------------------------------");
Console.WriteLine("* *");
Console.WriteLine("* Thực hiện ép kiểu bằng hàm Parse *");
Console.WriteLine("* *");
Console.WriteLine("----------------------------------------------------");
int Number1, Number2;
Console.Write("Thực hiện nhập số thứ nhất: ");
Number1 = int.Parse(Console.ReadLine());
Console.Write("Thực hiện nhập số thứ hai: ");
Number2 = int.Parse(Console.ReadLine());
Console.WriteLine("\n===================================================\n");
Console.WriteLine("Sau khi chuyển đổi dữ liệu ta được như sau");
Console.WriteLine("{0} {1}", Number2, Number1);
Console.ReadKey();
}
}
}
BÀI 5 NHẬP MỘT SỐ TỪ INPUT STREAM VÀ IN BẢNG NHÂN
Ví dụ: bạn nhập số 4 từ bàn phím, sau đó in bảng nhân có dạng: 4 x 0 = 0 4 x 1 = 4 4 x 2 = 8 ....
Giải
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CSharp_Bai5_HieuMaster
{
internal class Program
{
static void Main(string[] args)
{
Console.OutputEncoding = Encoding.UTF8;
int x;
int ketqua;
Console.Write("Mời bạn nhập số bất kì: ");
x = Convert.ToInt16(Console.ReadLine());
#region Phép tính
ketqua = x * 1;
Console.WriteLine("{0} * {1} = {2}",x, 1, ketqua);
ketqua = x * 2;
Console.WriteLine("{0} * {1} = {2}", x, 2, ketqua);
ketqua = x * 3;
Console.WriteLine("{0} * {1} = {2}", x, 3, ketqua);
ketqua = x * 4;
Console.WriteLine("{0} * {1} = {2}", x, 4, ketqua);
ketqua = x * 5;
Console.WriteLine("{0} * {1} = {2}", x, 5, ketqua);
ketqua = x * 6;
Console.WriteLine("{0} * {1} = {2}", x, 6, ketqua);
ketqua = x * 7;
Console.WriteLine("{0} * {1} = {2}", x, 7, ketqua);
ketqua = x * 8;
Console.WriteLine("{0} * {1} = {2}", x, 8, ketqua);
ketqua = x * 9;
Console.WriteLine("{0} * {1} = {2}", x, 9, ketqua);
ketqua = x * 10;
Console.WriteLine("{0} * {1} = {2}", x, 10, ketqua);
Console.ReadKey();
#endregion
}
}
}
BÀI 6 TÌM GIÁ TRỊ TRUNG BÌNH
Giải
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CSharp_Bai6_HieuMaster
{
internal class Program
{
static void Main(string[] args)
{
int a, b, c, d;
int ketqua;
Console.OutputEncoding = Encoding.UTF8;
Console.Write("Nhập số thứ nhất: ");
a = Convert.ToInt32(Console.ReadLine());
Console.Write("Nhập số thứ hai: ");
b = Convert.ToInt32(Console.ReadLine());
Console.Write("Nhập số thứ ba: ");
c = Convert.ToInt32(Console.ReadLine());
Console.Write("Nhập số thứ bốn: ");
d = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("\n===================================================================\n");
ketqua = (a + b + c + d) / 4;
Console.WriteLine("({0} + {1} + {2} + {3}) / 4 = {4}", a, b, c, d, 4, ketqua);
Console.ReadKey();
}
}
}
BÀI 7 CHUYỂN ĐỔI ĐỘ C THÀNH ĐỘ K VÀ ĐỘ F
Giải
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CSharp_Bai7_HieuMaster
{
internal class Program
{
static void Main(string[] args)
{
Console.OutputEncoding = Encoding.UTF8;
int K, F;
int Ketqua;
Console.Write("Hãy nhập độ C bạn muốn: ");
int C = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Độ K tương ứng là: ");
Console.WriteLine("1{0} = 1{1} + 273", K, C);
Console.WriteLine("Độ F tương ứng là: ");
Console.WriteLine("1{0} = {1} * 18/10 + 32",F,C);
Console.ReadKey();
}
}
}