#include #include #include int main(void) { int human,comp,judge; human=0; comp=0; judge=0; srand(time(NULL)); printf("じゃんけんで勝負です!\n"); comp = rand()%3; printf("選んでください....(0)グー (1)チョキ (2)パー:"); scanf("%d", &human); printf("私(コンピューター)は\n"); switch(comp){ case 0: printf("グー"); break; case 1: printf("チョキ"); break; case 2: printf("パー"); break; } printf("です\n"); judge=(human - comp +3) % 3; switch(judge){ case 0: printf("引き分けです\n"); break; case 1: printf("あなたの負けです\n"); break; case 2: printf("あなたの勝ちです\n"); break; } return (0); }