1)Write a C++ Program for the Input Two Numbers to find the sum of two numbers?
#include<iostream.h>
#include<conio.h>
int main()
{
clrscr();
float x,y,result;
cout<<"Enter two numbers";
cin>>x>>y;
result=x+y;
cout<<"In the result is"<<result;
return o;
}
0 Click here to comment:
Post a Comment