perform exception handling for Divide by zero Exception.
ALGORITHM:
Step 1: Start the program.
Step 2: Declare the variables a,b,c.
Step 3: Read the values a,b,c,.
Step 4: Inside the try block check the condition.
a. if(a-b!=0) then calculate the value of d and display.
b. otherwise throw the exception.
Step 5: Catch the exception and display the appropriate message.
Step 6: Stop the program.
PROGRAM:
08 | cout<<"Enter the value of a:"; |
10 | cout<<"Enter the value of b:"; |
12 | cout<<"Enter the value of c:"; |
20 | cout<<"Result is:"<<d; |
30 | cout<<"Answer is infinite because a-b is:"<<i; |
Output:
Enter the value for a: 20
Enter the value for b: 20
Enter the value for c: 40
Tidak ada komentar:
Posting Komentar