java while 和swith_求大神用JAVA帮忙写两个代码,使用switch和while写。。。谢了

展开全部

你试一下这个行不行:62616964757a686964616fe78988e69d8331333335326230import java.util.Scanner;

public class Cycle {

public static void main(String[] args){

//进入循环

while (true) {

//提示选择是否查询商品,n为退出查询

System.out.println("Do you want check?(y/n)");

Scanner scanner=new Scanner(System.in);

String selectedaction=scanner.next();

//进入查询

if (selectedaction.equals("y")) {

System.out.println("请输入查询商品的编号(1-3)");

int selectionNum=0;

selectionNum=scanner.nextInt();

//执行查询的方法

switch (selectionNum) {

case 1:

System.out.println("羊毛衫价格为258元");

break;

case 2: System.out.println("羽绒服价格为598元");break;

case 3: System.out.println("篮球的价格为205元");break;

default:

System.out.println("warning:please input 1 2 3");

break;

}

}

//不进入查询则退出

else  if(selectedaction.equals("n")) {

return ;

}

//没有输入y/n,无法识别,请重选

else {

System.out.println("warning:please input y/n");

}

}

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值