原因:没有加else
主要从事网页设计、PC网站建设(电脑版网站建设)、wap网站建设(手机版网站建设)、响应式网站建设、程序开发、微网站、小程序设计等,凭借多年来在互联网的打拼,我们在互联网网站建设行业积累了丰富的成都网站建设、网站设计、网络营销经验,集策划、开发、设计、营销、管理等多方位专业化运作于一体,具备承接不同规模与类型的建设项目的能力。
修改后代码:
public class Test {
public static void main(String[] args) {
/*if语句的第一种格式: if(条件表达式) { 执行语句; }*/
int x=1;
if(x1) {
System.out.println("Yes"); //如果为真,则输出“Yes”
}
else {
System.out.println("over");
}
}
}
运行结果:
java中if是控制分支结构的,意思是如果条件成立的话,执行某段代码。
if语句
一个if语句包含一个布尔表达式和一条或多条语句。
语法
If语句的用语法如下:
if(布尔表达式)
{
//如果布尔表达式为true将执行的语句
}
如果布尔表达式的值为true,则执行if语句中的代码块。否则执行If语句块后面的代码。
public class Test {
public static void main(String args[]){
int x = 10;
if( x 20 ){
System.out.print("这是 if 语句");
}
}
}
以上代码编译运行结果如下:
这是 if 语句
if...else语句
if语句后面可以跟else语句,当if语句的布尔表达式值为false时,else语句块会被执行。
语法
if…else的用法如下:
if(布尔表达式){
//如果布尔表达式的值为true
}else{
//如果布尔表达式的值为false
}
实例
public class Test {
public static void main(String args[]){
int x = 30;
if( x 20 ){
System.out.print("这是 if 语句");
}else{
System.out.print("这是 else 语句");
}
}
}
以上代码编译运行结果如下:
这是 else 语句
if...else if...else语句
if语句后面可以跟elseif…else语句,这种语句可以检测到多种可能的情况。
使用if,else if,else语句的时候,需要注意下面几点:
if语句至多有1个else语句,else语句在所有的elseif语句之后。
If语句可以有若干个elseif语句,它们必须在else语句之前。
一旦其中一个else if语句检测为true,其他的else if以及else语句都将跳过执行。
语法
if...else语法格式如下:
if(布尔表达式 1){
//如果布尔表达式 1的值为true执行代码
}else if(布尔表达式 2){
//如果布尔表达式 2的值为true执行代码
}else if(布尔表达式 3){
//如果布尔表达式 3的值为true执行代码
}else {
//如果以上布尔表达式都不为true执行代码
}
实例
public class Test {
public static void main(String args[]){
int x = 30;
if( x == 10 ){
System.out.print("Value of X is 10");
}else if( x == 20 ){
System.out.print("Value of X is 20");
}else if( x == 30 ){
System.out.print("Value of X is 30");
}else{
System.out.print("This is else statement");
}
}
}
以上代码编译运行结果如下:
Value of X is 30
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
byte x ,y;
x = sc.nextByte();
if(x 0) y = (byte) (x*x);
else if(x = 3) y = (byte) (x*2);
else y = (byte) (x/2);
System.out.println(y);
}
}
import java.util.Scanner;
public class test {
public static void main(String[] args) {
int j = 0;// 从0米开始跑
Scanner in = new Scanner(System.in);
while(true) {
System.out.println("你跑了多少米?");
j = in.nextInt();
System.out.println("口渴吗?请输入(yes or no)");
String thirst = in.next();
if (j 400) {
if (!thirst.equals("yes")) {
System.out.println("好吧,那你继续跑吧!");
continue; // 不喝水,继续跑
} else {
System.out.println("过来喝水吧");
}
break;
}
else{
continue;
}
}
}
}
谢谢采纳
Java程序:
public class Test10 {
public static void main(String[] args) {
int num = 787;
boolean flag = false;
if(num 10) {//个位数
flag = true;
}
else if(num 100) {//两位数
if(num % 10 == num / 10) {
flag = true;
}
}
else {//三位数
if(num % 10 == num / 100) {
flag = true;
}
}
if(flag) {
System.out.println(num + "是对称数");
}
else {
System.out.println(num + "不是对称数");
}
}
}
运行测试:
787是对称数