Respuesta :
Answer:
case 0:
System.out.println("Rock");
break;
case 1:
System.out.println("Paper");
break;
case 2:
System.out.println("Scissors");
break;
default:
System.out.println("Unknown");
break;
}
Explanation:
In this exercise we have to use the knowledge of computational language in python to describe a code, like this:
The code can be found in the attached image.
To make it easier the code can be found below as:
case 0:
System.out.println("Rock");
break;
case 1:
System.out.println("Paper");
break;
case 2:
System.out.println("Scissors");
break;
default:
System.out.println("Unknown");
break;
}
See more about python at brainly.com/question/26104476