home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of A1200
/
World_Of_A1200.iso
/
datafiles
/
text
/
c_tutor
/
intin.c
< prev
next >
Wrap
C/C++ Source or Header
|
1995-02-27
|
279b
|
15 lines
#include "stdio.h"
main()
{
int valin;
printf("Input a number from 0 to 32767, stop with 100.\n");
do {
scanf("%d",&valin); /* read a single integer value in */
printf("The value is %d\n",valin);
} while (valin != 100);
printf("End of program\n");
}