java实现简单⽯头剪⼑布游戏
本⽂实例为⼤家分享了java实现简单⽯头剪⼑布游戏的具体代码,供⼤家参考,具体内容如下
问题描述
Alice, Bob和Cindy⼀起玩猜拳的游戏。和两个⼈的猜拳类似,每⼀轮,他们会从⽯头、剪⼑、布中各⾃选⼀个出拳,基本的胜负规则是⽯头赢剪⼑、剪⼑赢布、布赢⽯头。如果⼀轮中正好可以分成胜负两边,
则负边的每个⼈要⽀付给胜边的每个⼈⼀块钱。如果⽆法分成胜负两边,则都不出钱。⽐如,如果Alice出⽯头,⽽Bob和Cindy都出布,则Alice要分⽀付Bob和Cindy⼀块钱。再如,如果Alice出⽯头, Bob出剪⼑,
Cindy出布,则都不出钱。他们三⼈共进⾏了n轮游戏,请问最后每个⼈净赚多少钱?即赚的钱减去⽀付的钱是多少?
代码
package Ring1270.pra.java01;
import java.util.Scanner;
/**
* finger-guessing game: * n:number of games * A: Person A's money * B: Person B's money * C: Person C's money * 0: Stand for stone * 1: Stand for Scissor * 2: Stand for cloth * rule1: Two persons give the same result means game over * Rule2: The money  public static void main(String[] args) {
int A = 0;
int B = 0;
int C = 0;
Scanner scanner = new Scanner(System.in);
System.out.printf("The number of game:");
int n = Int();
StringBuffer stringBuffer = new StringBuffer();
for (int i = 0; i <= n; i++) {
String s = Line();
char[] D = s.toCharArray();
for (int j = 0; j < D.length; j++) {
//A and B success
if (D[0] == D[1] && D[0] != D[2]) {
if ('0' == D[0] && '1' == D[2]) {
A++;
B++;
C -= 2;
}
else if ('1' == D[0] && '2' == D[2]) {
A++;
B++;
C -= 2;
}
else if ('2' == D[0] && '0' == D[2]) {
A++;
B++;
C -= 2;
}else {
A--;
B--;
C += 2;
}
}
// A and C success
if (D[0] == D[2] && D[0] != D[1]) {
if ('0' == D[0] && '1' == D[1]) {
A++;
B -= 2;
C++;
}
else if ('1' == D[0] && '2' == D[1]) {
A++;
B -= 2;
C++;
}
else if ('2' == D[0] && '0' == D[1]) {
A++;
B -= 2;
C++;
}else {
A--;
B += 2;
C--;
}
}
// C and B success
if (D[1] == D[2] && D[1] != D[0]) {
if ('0' == D[1] && '1' == D[0]) {
A -= 2;
B++;
C++;
}
else if ('1' == D[1] && '2' == D[0]) {
A -= 2;
B++;
C++;
}
else if ('2' == D[1] && '0' == D[0]) {
A -= 2;
B++;
C++;
}
else {
A += 2;
B--;
C--;
}
}
简单的java游戏代码break;
}
}
System.out.println(A);
System.out.println(B);
System.out.println(C);
}
}
运⾏截图
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。