home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d7xx
/
d795
/
pstools.lha
/
PSTools
/
PSTools1.lha
/
source
/
test.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-12-14
|
216 b
|
20 lines
#include <stdio.h>
main(int ac,char **av)
{
double a,b;
if(*av[1] == '1')
{
puts("1");
scanf("%f", &a);
}
else
{
puts("2");
scanf("%lf", &b);
}
printf("%f %f\n",a,b);
}