View difference between Paste ID: BQq952NN and m2P0YdQj
SHOW: | | - or go back to the newest paste.
1
private String RPSdisplay(int rpsdisplay){
2-
		String rps = "";
2+
		String returnValue = "";
3-
		String airps = "";
3+
4
		switch(rpsdisplay)
5
		{
6-
		case 1: rps = "Rock"; airps = "Rock";
6+
		case 1: returnValue = "Rock";
7
		break;
8-
		case 2: rps = "Paper"; airps = "Paper";
8+
		case 2: returnValue = "Paper";
9
		break;
10-
		case 3: rps = "Scissors"; airps = "Scissors";
10+
		case 3: returnValue = "Scissors";
11
		break;
12
		}
13-
		return
13+
		return returnValue;
14
	}