Computer Science, asked by shrushtiborude910, 1 month ago

Write a program which accept two integers and an arithmetic operator from the command line and
performs the operation Fire the following user defined exceptions:

i.If the no of arguments are less than 3 then, fire-IllegalNumberOfArgumentl.​

Answers

Answered by atharvshinde2020
0

Explanation:

#Program to input two numbers and performing all arithmetic operations

#Input first number

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

#Input Second number

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

#Printing the result for all arithmetic operations

print("Results:-")

print("Addition: ",num1+num2)

print("Subtraction: ",num1-num2)

print("Multiplication: ",num1*num2)

print("Division: ",num1/num2)

print("Modulus: ", num1%num2)

print("Floor Division: ",num1//num2)

print("Exponentiation: ",num1 ** num2)

OUTPUT:

Enter first number: 8

Enter second number: 3

Results:-

Addition: 11

Subtraction: 5

Multiplication: 24

Division: 2.6666666666666665

Modulus: 2

Floor Division: 2

Exponentiation: 512

Similar questions