A program to ask the user to give a number and then the program will check if the given number is an odd or even number using ternary operator in C++ programming language.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
Please subscribe to my channel https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg
=================================================
Want to support my channel?
GCash Account
Jake Pomperada
09173084360
Paypal
https://paypal.me/jakerpomperada
Patreon
https://www.patreon.com/jakerpomperada
Thank you very much for your support.
Program Listing
#include <iostream>
using namespace std;
int main() {
int num=0;
cout << "\n";
cout << "\tOdd and Even Number Using Ternary Operator in C++";
cout << "\n\n";
cout << "\tGive a Number : ";
cin >> num;
cout << "\n";
(num % 2 == 0) ? cout <<"\t" << num << " is an even number." : cout <<"\t" << num << " is an odd number.";
cout << "\n\n";
cout << "\tEnd of Program";
cout << "\n";
}
No comments:
Post a Comment