드래그 앤 드롭으로
즐겨찾기 아이콘 위치 수정이 가능합니다.
가위바위보게임에 이긴누적수를 넣고싶은데 어떻게 하면될까요
게시물ID : programmer_5019짧은주소 복사하기
작성자 : Riot_자크★
추천 : 1
조회수 : 460회
댓글수 : 3개
등록시간 : 2014/08/15 21:28:31
#include<stdio.h> #include <stdlib.h> #include <time.h> void main() {int input, computer; srand((int)time(NULL)); while(1) { printf("[가위바위보게임]\n 가위:0, 바위:1, 보:2\n 나:"); scanf("%d", &input); if((input < 0) || (input > 3)) { printf("다시 입력해 주세요!\n\n"); continue; } if(input == 3) break; computer = rand() % 3; printf(" 컴퓨터:%d\n",computer); if(computer == input) { printf("비겼습니다. \n\n"); } else if((computer == 0) && (input == 1)) { printf("이기셨습니다.\n\n"); } else if((computer == 0) && (input == 2)) { printf("지셨습니다.\n\n"); } else if((computer == 1) && (input == 2)) { printf("이기셨습니다.\n\n"); } else if((computer == 1) && (input == 0)) { printf("지셨습니다.\n\n"); } else if((computer == 2) && (input == 0)) { printf("이기셨습니다.\n\n"); } else if((computer == 2) && (input == 1)) { printf("지셨습니다.\n\n"); } } }
누적이긴수 어떻게 설정할수있을까요
댓글 분란 또는 분쟁 때문에
전체 댓글이 블라인드 처리되었습니다.
새로운 댓글이 없습니다.