home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FreeWare Collection 2
/
FreeSoftwareCollection2pd199x-jp.img
/
ms_dos
/
switch
/
switch.c
next >
Wrap
Text File
|
1990-06-14
|
260b
|
29 lines
#include <stdio.h>
int main()
{
char get;
int input;
printf("入力してください\n");
get=getch();
if(get=='y'||get=='Y')
{
get='1';
}
if(get=='n'||get=='N')
{
get='0' ;
}
return((int)(get-'0'));
}