반응형
if없이
-
[C언어] 컴퓨터와 가위바위보, if절 없이Programming/C언어 2021. 2. 2. 22:04
#include #include #include void main() { int me,com; srand(time(NULL)); com=rand()%3; printf("가위(1),바위(2),보(3) 중 하나를 입력하세요.\n가위 바위 보!!\n"); scanf("%d",&me); switch(me) { case 1: switch(com) { case 1: printf("내가 낸것 :가위(1) vs. 컴퓨터가 낸것: 가위(1)\n\n\n비겼습니다!\n\n\n"); break; case 2: printf("내가 낸것 :가위(1) vs. 컴퓨터가 낸것: 바위(2)\n\n\n졌습니다!\n\n\n"); break; case 3: printf("내가 낸것 :가위(1) vs. 컴퓨터가 낸것: 보(3)\n\n\n이겼습..