Computer Science, asked by thanisha00, 6 months ago

Write a C++ program to check whether a given number is greater than or equal to 63.​

Answers

Answered by vijayghore
0

Answer:

#include<stdio>

using namespace std;

main()

{

   int n;

   cout<<"Enter a number\n";

   cin>>n;

  if(n>=63)

       cout<<"Entered number is greater than or to 63";

  else

       cout<<"Entered number is less  than 63";

}

Answered by anindyaadhikari13
1

Question:-

Write a C++ program to check whether a given number is greater than or equal to 63.

Program:-

#include <stdio>

using namespace std;

int main()

{

cout <<"Enter an integer number: ";

int n;

cin >> n;

if(n>=63)

cout <<" Number is greater than or equal to 63.";

else

cout <<"Number is less than 63.";

return 0;

}

Similar questions