![]() ![]() | ![]() |
|
ปรับปรุง : 2564-07-13 (ปรับแฟ้ม) |
| datatype | TurboC | Programming |
// scanf, switch<br>รับค่า แล้วเลือกกระทำด้วย switch
/* http://www.thaiall.com/tc */
#include <stdio.h>
#include <string.h>
#include <conio.h>
main()
{
clrscr();
char s;
printf("Please put 1 to 5 : ");
scanf("%s",&s);
switch(s)
{
case '1' : printf("one"); break;
case '2' : printf("two"); break;
case '3' : printf("three"); break;
case '4' : printf("four"); break;
case '5' : printf("five"); break;
default : printf("None"); break;
}
getch();
return(0);
} |
|
| "ไม่เริ่มต้นในวันนี้ จะไม่มีทางสำเร็จในวันพรุ่ง" โดย โยฮัน ว็อล์ฟกัง ฟ็อน เกอเทอ |