You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
250 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

public class Jb06_Operate4
{
public static void main(String[] args)
{
// 三元运算符:(条件表达式)?表达式1:表达式2;
// 如果条件表达式结果是true结果是表达式1。否则结果是表达式2。
int x = 1,y;
y = (x>3)?21:27;
System.out.println(y);
}
}