#include<stdio.h>
#include<math.h>
int main()
{
int x;
printf("請輸入1或2或3等數字(1/2/3):\n");
scanf("%d", &x);
printf("你輸入的 N=%3d\n",x);
//=============================
printf("\n13.出現的是:");
if (x== 1)
printf("剪刀\n",x);
else
if (x==2)
printf("石頭\n",x);
else
if (x==3)
printf("布\n",x);
else
printf("輸入錯誤\n",x);
return 0;
}
Stdin Inputs...
3
請輸入1或2或3等數字(1/2/3):
你輸入的 N= 3
13.出現的是:布
沒有留言:
張貼留言