ONLINE COMPILERS
LIBRARY
MANUAL PAGES & DOCS
CONTACT
Latest Users' Questions
User Submitted Source Code!
Description:
a
Language: C/C++
Code:
a
Language: C/C++
Code:
#include <iostream.h>
#include <conio.h>
int main()
{
double x=355.0/113 ,y;
int m=2 ,n;
y= x/ 2
cout<<"x="<<x<<endl
cout<<"y="<<y<<endl
n=5*m
cout<<"m="<<m<<endl
cout<<"n="<<n<<endl
getch();
return 0;
}
#include <conio.h>
int main()
{
double x=355.0/113 ,y;
int m=2 ,n;
y= x/ 2
cout<<"x="<<x<<endl
cout<<"y="<<y<<endl
n=5*m
cout<<"m="<<m<<endl
cout<<"n="<<n<<endl
getch();
return 0;
}
Comments: