ALGORITHM STRUCTURES
Seletion Structure :
E.G : Solve linear equation ax+b=0
If a=0 , then we consider b
Else , a ≠0 , there is a unique root -b/a
mọi người giải giúp em ạ
Em xin cảm ơn ạ
Bằng cách nhấp vào Đăng nhập, bạn đồng ý Chính sách bảo mật và Điều khoản sử dụng của chúng tôi. Nếu đây không phải máy tính của bạn, để đảm bảo an toàn, hãy sử dụng Cửa sổ riêng tư (Tab ẩn danh) để đăng nhập (New Private Window / New Incognito Window).
using System;
class Linear
{
static void Main()
{
Console.Write("a = ");
int a = GetIntegerInput();
Console.Write("b = ");
int b = GetIntegerInput();
if (a == 0)
{
if (b == 0)
{
Console.WriteLine("There are infinitely many roots.");
} else Console.WriteLine("There is no root.");
} else
{
double result = ((double)b) / (-a);
Console.WriteLine("There is an unique root: x = {0}", result);
}
}
public static int GetIntegerInput()
{
do
{
string input = Console.ReadLine();
if (Int32.TryParse(input, out int output))
{
return output;
}
else
{
Console.WriteLine("{0} was not a valid integer. Please try again.");
}
}
while (true)
}
}
Hôm nay bạn thế nào? Hãy nhấp vào một lựa chọn, nếu may mắn bạn sẽ được tặng 50.000 xu từ Lazi
Vui | Buồn | Bình thường |