correct the errors in the following code
#include<upstream>
{
clrscr;
int NUM
count<< Enter a number;
CIN>> NUM;
if NUM >100
count<< the number;}
Answers
Answered by
2
Answer:
correct the errors in the following code
#include<iostream>
#include<conio. h>
using namespace std;
void main()
{
clrscr();
int NUM;
cout<<" Enter a number" ;
cin>> NUM;
if (NUM >100)
cout<< "the number is less than 100";
}
Explanation:
your code is incomplete
Similar questions