これが私のコードです:
#include <iostream>
using namespace std;
#include <ctime>
#include <cstdlib>
int main()
{
srand(time(0));
char computerChoice;
switch ( rand()%3)
{
case 0:
computerChoice = 'R';
case 1:
computerChoice = 'P';
case 2:
computerChoice = 'S';
}
cout << computerChoice;
}
プログラムが実行されるたびに computerChoice の「S」を取得し続け、プログラムをループしても「S」を取得し続けます。