Skip to main content
Search
Search This Blog
be professional programer java and c++ as well android programing
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
June 19, 2016
Sum of two numbers taken by user
a simple program to add two numbers
#include<iostream.h>
#include<conio.h>
void main()
{clrscr();
cout<<"enter two numbers ";
int x,y, r;
cin>>x>>y;
r=x+y;
cout<<"the sum = "<<r;
getch();
}
Comments
Popular Posts
June 19, 2016
C++
June 19, 2016
First frogram in c++
Comments
Post a Comment