home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgLangD.iso
/
TC-300
/
EXAMPLES
/
INTRO7.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1992-02-17
|
375b
|
19 lines
// INTRO7.CPP--Example from Chapter 3, " An Introduction to C++"
#include <iostream.h>
int main()
{
float result;
result = 1.0 + 2.0 * 3.0 / 4.0;
cout << '\n' << result;
result = 1.0 / 2.0 + 3.0;
cout << '\n' << result;
result = (1.0 + 2.0) / 3.0;
cout << '\n' << result;
result = (1.0 + 2.0 / 3.0) + 4.0;
cout << '\n' << result;
return 0;
}