我是靠谱客的博主 安静书本,最近开发中收集的这篇文章主要介绍for循环内嵌if,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

import java.util.Scanner;

public class ExerciseDemoforbreak {
	public static void main(String[] args) {
		Scanner input = new Scanner(System.in);
		String prize = null;//定义奖品的变量
		final int price =(int)((Math.random() * 1000) % 9 + 1) * 1000;//常量,无法修改,为猜测的价格
		//MAth.andom为0-1之间的数字,在定义变量之前,前面加了int,所以需要(int)强制转型成整型数字
		//
		int guessprice = 0;//猜测的价格
		int count = 0; //猜测的次数
		for (int i = 0; i < 5; i++) {//循环执行猜数字语句
			System.out.printf("请输入神秘商品的价格,当前次数为" + ++count + "次:");//让用户输入数字,这句话同时个输入次数赋值了
			guessprice = input.nextInt();
			if(guessprice == price) {//在猜测正确的情况下,判断猜测的次数
				if(count == 1) {
					prize = "Iphone 11 256G" ;
				}else if(count > 1 && count <= 3){
					prize = "HUAWEI honro X9 青春版 128G";
				}else if(count > 3 && count <= 5) {
					prize = "Mi Max4 至尊荣耀版512";
				}
				break;
			}
			if(guessprice > price) {
				System.out.println("大了,请继续。");
			}else if(guessprice < price){
				System.out.println("小了,请继续。");
			}
			}
	if(prize == null) {
		System.out.println("5次机会已经用完,请下次加油");
	}else {
		System.out.printf("恭喜你答对了,获得的奖品为:%s", prize);
	}
	}
}

最后

以上就是安静书本为你收集整理的for循环内嵌if的全部内容,希望文章能够帮你解决for循环内嵌if所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(73)

评论列表共有 0 条评论

立即
投稿
返回
顶部