Hỏi đáp

Chia sẻ kiến thức, cùng nhau phát triển

Lập trình C#

11:07 31-10-2022 616 lượt xem 1 bình luận

Viết chương trình theo 3 cách (dùng while, do...while, for): Yêu cầu người dùng nhập vào số nguyên n và n số nguyên a1 , a2, …, an. Tính:S = a1 + a2 + …+ an 

Lập trình C#

Làm ơn giúp em với ạ

Bình luận

Để bình luận, bạn cần đăng nhập bằng tài khoản Howkteam.

Đăng nhập
ninjarua314 đã bình luận 22:48 31-10-2022
String S1,Number;
int S2,S3 = 0;
float Tong = 0;
Console.WriteLine("nhap vao so nguyen n ");
S1 = Console.ReadLine();
S2 = int.Parse(S1);
//Cach 1 dung while
int i = 1;
while (i <= s2)
{
console.writeline("nhap vao so a[{0}]", i);
number = console.readline();
s3 = int.parse(number);
tong = tong + s3;
++i;
}
////cach 2 dung do ... while
int i = 0;
do
{
++i;
Console.WriteLine("Nhap vao so a[{0}]", i);
Number = Console.ReadLine();
S3 = int.Parse(Number);
Tong = Tong + S3;

}
while (i < S2);
// cach 3 dung for
for (int e = 1; e <= S2; e++)
{
Console.WriteLine("Nhap vao so a[{0}]", i);
Number = Console.ReadLine();
S3 = int.Parse(Number);
Tong = Tong + S3;
}




Console.WriteLine("Ket qua S la:{0} " );
Console.WriteLine(Tong);
Console.ReadKey();

Câu hỏi mới nhất