Sunday, April 12, 2020

How to use cout and cin statement Program:

Program C++


#include<iostream>
using namespace std;
void main()
{
 cout<<"Enter favorite No"<<endl;
int n;
cin>>n;
cout<<n<<endl;
system("pause");
}
Click on the link below

video related to this code 
https://youtu.be/-TLumzNgcjs



No comments:

Post a Comment

Maximum No

//Find the Maximum No between Three Nos' int i=10,o=20,k=30; if(i>o &&i>k) { cout<<"1st is g\n";...