问题基本描述:我在win7的命令行下调用java编译<<java完全手册>>上的一个程序,内容贴在下面。编译时候不会报错,但是会出现类似于重复输出三次的问题。
代码在这里
class contral{
public static void main(String args[])
throws java.io.IOException {
char choice;
int ind1;//pasage index1
System.out.println("your choice?");
System.out.println("Help infor:");
System.out.println("1.if");
System.out.println("2.do-while");
System.out.println("3.while");
System.out.println("4.switch");
System.out.println("5.for");
do{
choice=(char)System.in.read();//remark a
switch(choice){
case '1':System.out.print("If(bull value)\n");
System.out.print(" statement\n");
System.out.print("else\n");
System.out.print(" statement\n");
break;
case '2':System.out.print("do (statement)\n while (bull value)");
break;
case '3':System.out.print("while (bull valie)\n (statement)");
break;
case '4':System.out.print("switch (value)\n case a1\n statement1 \n break;...");
break;
case '5':System.out.print("for (variable = initial value; bull value formula; step length)\n statement");
break;
default: System.out.println("Wrong message, input the right message again.");//Goto remark a
break;
}
}while (choice<'1'||choice>'5');
//}while (ind1==1);
}
}
输出结果在这里
D:\ProgramData\Java\java Menu
Help on:
1. if
2. switch
3.while
4.do-while
5.for
Choose one
a //我输入的值,按a之后回车
Help on:
<p style="font-size:13.3333330154419px;">
1. if
</p>
<p style="font-size:13.3333330154419px;">
2. switch
</p>
<p style="font-size:13.3333330154419px;">
3.while
</p>
<p style="font-size:13.3333330154419px;">
4.do-while
</p>
<p style="font-size:13.3333330154419px;">
5.for
</p>
<p style="font-size:13.3333330154419px;">
Choose one:
</p>
<p style="font-size:13.3333330154419px;">
</p><p style="font-size:13.3333330154419px;">
Help on:
</p>
<p style="font-size:13.3333330154419px;">
1. if
</p>
<p style="font-size:13.3333330154419px;">
2. switch
</p>
<p style="font-size:13.3333330154419px;">
3.while
</p>
<p style="font-size:13.3333330154419px;">
4.do-while
</p>
<p style="font-size:13.3333330154419px;">
5.for
</p>
<p style="font-size:13.3333330154419px;">
Choose one
</p>
<p style="font-size:13.3333330154419px;">
Help on:
</p>
<p style="font-size:13.3333330154419px;">
1. if
</p>
<p style="font-size:13.3333330154419px;">
2. switch
</p>
<p style="font-size:13.3333330154419px;">
3.while
</p>
<p style="font-size:13.3333330154419px;">
4.do-while
</p>
<p style="font-size:13.3333330154419px;">
5.for
</p>
<p style="font-size:13.3333330154419px;">
Choose one
</p>
<p style="font-size:13.3333330154419px;">
__(第二次提示输入)
</p>
<p style="font-size:13.3333330154419px;">
也就是字符串出现三次,但是后两次是自动弹出的,完全是多余的。
</p>
<p style="font-size:13.3333330154419px;">
第一次发表问题,不知道我表达清楚了没有。请各位大大指正!
</p>
<p></p>
这是因为在你输入a之后还有一个回车符\n而这个回车符号正好也是两个字节,导致多出了两个 输出信息。
我们可以使用Scanner读取用户输入的一行信息,然后只取第一个字节作为,判断标准,其他的字符全部忽略。e.g
importjava.util.Scanner;classcontral{ publicstaticvoidmain(Stringargs[]) throwsjava.io.IOException{ bytechoice; System.out.println("yourchoice?"); System.out.println("Helpinfor:"); System.out.println("1.if"); System.out.println("2.do-while"); System.out.println("3.while"); System.out.println("4.switch"); System.out.println("5.for"); Scannersc=newScanner(System.in); do{ choice= sc.nextLine().getBytes()[0];//remarka switch(choice){ case'1': System.out.print("If(bullvalue)\n"); System.out.print(" statement\n"); System.out.print("else\n"); System.out.print(" statement\n"); break; case'2': System.out.print("do(statement)\n while(bullvalue)"); break; case'3': System.out.print("while(bullvalie)\n (statement)"); break; case'4': System.out.print("switch(value)\ncasea1\n statement1\n break;..."); break; case'5': System.out.print("for(variable=initialvalue;bullvalueformula;steplength)\n statement"); break; default: System.out.println("Wrongmessage,inputtherightmessageagain.");//Gotoremarka break; } }while(choice<'1'||choice>'5'); }}
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。