home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C Programming Starter Kit 2.0
/
SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso
/
tybc4
/
var1.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1993-03-17
|
334b
|
20 lines
// C++ program that illustrates simple variables
#include <iostream.h>
main()
{
int i, j = 2;
double x, y = 355.0 / 113;
i = 3 * j;
cout << "i = " << i << "\n"
<< "j = " << j << "\n";
x = 2 * y;
x = x * x;
cout << "y = " << y << "\n"
<< "x = " << x << "\n";
return 0;
}