home *** CD-ROM | disk | FTP | other *** search
/ FreeWare Collection 2 / FreeSoftwareCollection2pd199x-jp.img / ms_dos / switch / switch.c next >
Text File  |  1990-06-14  |  260b  |  29 lines

  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.     char get;
  6.     int input;
  7.     printf("入力してください\n");
  8.     get=getch();
  9.  
  10.     if(get=='y'||get=='Y')
  11.       {
  12.       get='1';
  13.       }
  14.     if(get=='n'||get=='N')
  15.       {
  16.       get='0' ;
  17.       }
  18.  
  19.     return((int)(get-'0'));
  20.  
  21. }
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.