C++ Check if the number is Positive or Negative Program in hindi
सभी को नमस्कार!
इस ट्यूटोरियल में, हम सीखेंगे कि C++ प्रोग्रामिंग भाषा में यह कैसे निर्धारित किया जाए कि दर्ज की गई संख्या सकारात्मक है या नकारात्मक।
यह सी ++ में अगर-और ब्लॉक की अवधारणा द्वारा किया जा सकता है (सी ++ सीखें अगर-और)।
नीचे दिया गया टिप्पणी कोड आपको इस अवधारणा को विस्तार से समझने में मदद करेगा।
#include <iostream>
using namespace std;
int main()
{
cout << "\n\n Welcome to Sirfpadhai.in :-)\n\n\n";
cout << " ===== Program to Check if the number is positive or negative ===== \n\n";
int num;
//taking user input
cout << "Enter any non-zero Number to be checked: ";
cin >> num;
//when the condition inside the if() is true, then it enters the code block
if (num > 0)
{
cout << "\nEntered number is positive";
}
else //when if is not executed then it moves to the else block
{
cout << "\nEntered number is negative";
}
cout << "\n\n\n";
return 0;
}
Output :-
Welcome to Sirfpadhai.in :-)
===== Program to Check if the number is positive or negative =====
Enter any non-zero Number to be checked: -200
Entered number is negative
--------------------------------
Process exited after 17.62 seconds with return value 0
Press any key to continue . . .
हमें उम्मीद है कि इस पोस्ट ने आपको C++ में if else ब्लॉक के लॉजिक की बेहतर समझ विकसित करने में मदद की है। किसी भी प्रश्न के लिए, नीचे टिप्पणी अनुभाग के माध्यम से हमसे बेझिझक संपर्क करें।