您的位置:首页 > 移动开发 > 微信开发

JAVA小程序:和电脑猜拳

2016-02-24 15:43 363 查看
import java.util.Scanner;

import java.util.Random;

public class Hello {

public static int judge(int j, int k)

{

int m;

if(j==k) m=0;

else if(j==0&&k==2||j==1&&k==0||j==2&&k==1) m=1;

else m=2;

return m;

}

public static void main(String[] args) {

System.out.println("scissor(0),rock(1),paper(2)");

System.out.println("Please Input Your Choose:");

int a=0,b=0;

Scanner input = new Scanner(System.in);

while(a!=2&&b!=2)

{

int Choose = input.nextInt();

int number = new Random().nextInt(3);

if (judge(Choose,number)==0)

{System.out.println("平手,please continue competition");

continue;}

else if(judge(Choose,number)==1)

{ System.out.println("You win this time,please continue competition");

a++;}

else if(judge(Choose,number)==2)

{ System.out.println("You are defeabed this time,please continue competition");

b++;

}

}

if(a==2)

System.out.println("You Win Last");

else if(b==2)

System.out.println("Computer Win Last");

}

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: