viết chương trình xuất ra màn hình số lớn nhất trong ba số nguyên ngẫu nhiên được nhập từ bàn phím
2 câu trả lời
Program ngn;
Uses crt;
Var a,b,c,min: integer;
Begin
Writeln ('nhap a,b,c=');
Readln (a,b,c);
If a <b then min:=a else min:=b;
If c <min then min:=c;
Writeln ('so lon nhat la:', max);
Readln
End.
Here is a piece of Python code:
# list of numbers
your_list = [100, 200, 300, 50, 40, 30]
# sorting the list
your_list.sort()
# printing the last element (greatest element)
print("Greatest element is:", your_list[-1])
Good luck!
:)