最佳答案
关于使用问号的两个问题和冒号“ :”在打印函数的括号内的运算符: 它们是做什么的?还有,有人知道它们的标准术语吗? 或者我在哪里可以找到更多关于它们使用的信息?我读到它们类似于“ if”“ else”语句。
int row = 10;
int column;
while (row >= 1)
{
column = 1;
while(column <= 10)
{
System.out.print(row % 2 == 1 ? "<" : "\r>");
++column;
}
--row;
System.out.println();
}