1. Write a program for the user to input any

Berikut ini adalah pertanyaan dari yoges5552000 pada mata pelajaran TI untuk jenjang Sekolah Menengah Atas

1. Write a program for the user to input any TWO numbers. The program then will compare to display the largest and the smallest number Handed2. U-TelcoSdn Bhd is committed to being a leader in the distribution of telecommunication products. They pay their employees' gross pay based on the condition below ​

Jawaban dan Penjelasan

Berikut ini adalah pilihan jawaban terbaik dari pertanyaan diatas.

Jawaban:

1)

def main():

   print("This program will compare two numbers and determine which is the largest and smallest")

   num1 = int(input("Enter the first number: "))

   num2 = int(input("Enter the second number: "))

   if num1 > num2:

       print("The largest number is: ", num1)

       print("The smallest number is: ", num2)

   else:

       print("The largest number is: ", num2)

       print("The smallest number is: ", num1)

main()

Penjelasan:

Semoga dengan pertanyaan yang sudah terjawab oleh newfebriwisnu dapat membantu memudahkan mengerjakan soal, tugas dan PR sekolah kalian.

Apabila terdapat kesalahan dalam mengerjakan soal, silahkan koreksi jawaban dengan mengirimkan email ke yomemimo.com melalui halaman Contact

Last Update: Wed, 15 Jun 22