我正在尝试使用 if 语句创建我的第一个 java 应用程序,该语句将采用整数(例如 22),并在乘法和减法时找出其总和是否相等(例如 2*2=4 和 2+2=4)或如果不是。
虽然我不知道如何做 if 决定。有人可以指出怎么做吗?
感谢你
package 1;
import java.util.Scanner;
public class 1
{
public static void main(String[] args)
{
Scanner input = new Scanner( System.in );
int x;
int y;
System.out.print( "Enter a number from 10 to 99: " );
x = input.nextInt();
if ( x >= 10 && x <= 99 )
{
x= x % 10;
x= x / 10;
}
else
{
System.out.println( "you must enter a number from 10 to 99" );
}
}
}