home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 7
/
07.iso
/
c
/
c063
/
1.ddi
/
EXAMPLES.ZIP
/
INTRO5.CPP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1992-02-18
|
207 b
|
14 lines
// INTRO5.CPP -- Example from chapter 3 "Introduction to C++
#include <iostream.h>
int main()
{
int num = 3, denom = 4;
float value;
value = num / denom;
cout << value;
return 0;
}