Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使列表彼此并排(水平)而不是向下(垂直)。
例子:
一月(这是我不断得到的)SMTWTFS 1
2
3
4
5
...
一月(这是我想得到的)SMTWTFS 1 2 3 4 5 6 7 8 9 ...
感谢任何帮助,我是新手,我无法弄清楚。:)
利用 :
System.out.print("Value");
代替 :
System.out.println("Value");
不要忘记添加一个
System.out.println("");
最后刷新缓冲区。