猜价格

作者: 优秀产品研习社 | 来源:发表于2018-09-14 17:42 被阅读0次

    import java.util.Scanner;

    import java.util.Random;

    public class Demo14{

    public static void main(String[] args){

    Scanner sc = new Scanner(System.in);

    System.out.print("请输入公主电动车:");

    int price = sc.nextInt();//用户输入的价格

    int rPrice = new Random().nextInt(5)+1;//随机生成的价格

    System.out.println("用户价格:"+price);

    System.out.println("随机价格:"+rPrice);

    for(int i = 1;i<5;i++){

    if(price>rPrice){//用户输入的价格 大了  提示再小一点

    System.out.println("再小一点!\n");

    System.out.print("再猜一次:");

    price = sc.nextInt();

    }else if(price<rPrice){//用户输入的价格 小了  提示再大一点

    System.out.println("再大一点!\n");

    System.out.print("再猜一次:");

    price = sc.nextInt();

    }else{

    System.out.println("恭喜你,获得了此奖品");

    break;

    }

    if(i==4){

    System.out.println("5次内都没有猜对,下次努力吧!");

    }

    }

    }

    }

    相关文章

      网友评论

          本文标题:猜价格

          本文链接:https://www.haomeiwen.com/subject/wfxagftx.html