home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tybc4 / var1.cpp < prev    next >
C/C++ Source or Header  |  1993-03-17  |  334b  |  20 lines

  1. // C++ program that illustrates simple variables
  2.  
  3. #include <iostream.h>
  4.  
  5. main()
  6. {
  7.   int i, j = 2;
  8.   double x, y = 355.0 / 113;
  9.   
  10.   i = 3 * j;
  11.   cout << "i = " << i << "\n"
  12.        << "j = " << j << "\n";
  13.        
  14.   x = 2 * y;
  15.   x = x * x;
  16.   cout << "y = " << y << "\n"
  17.        << "x = " << x << "\n";
  18.   return 0;
  19.   
  20. }