Answer to Question #264782 in C++ for Kashce

Question #264782

Make a program that will input two number, If the two number entered are ODD then perform the addition and display the Sum. Your program will be terminated by an option if the user not to proceed another entry.

Ex, No. 1: 5 No. 2: 3

No. 1: 3

No. 2: 2

Sum is : 8

One of the number entered is not ODD


1
Expert's answer
2021-11-12T00:09:11-0500
#include <iostream>


using namespace std;


int main()
{
    while(true){
        int num1;
        int num2;
        
        cout<<"\nEnter two numbers: ";
        cin>>num1>>num2;
        
        int sum;
        if(num1%2!=0 && num2%2!=0){
            sum=num1+num2;
            cout<<"\nSum: "<<sum;
        }
        else{
            cout<<"\nOne of the number entered is not ODD";
            break;
        }
      
    }
    return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS