标签:
1 //output result 2 os << " " << "Result:" << " | "; 3 for(int i = 0; i < 5; i++) { 4 os << res[i] << ((4-i)?" ":"\n"); 5 }
<<运算符比 ?运算符优先级要高的。要注意使用。
控制输出换行
原文地址:http://www.cnblogs.com/yyisgod/p/4575435.html