我想要一个程序,用于在java中打印以下格式的数字。
array (size=4)
'one' => string 'one' (length=3)
'two' => string '2' (length=1)
'three' => string 'three' (length=5)
'four' => string '4' (length=1)
预期输出应为
1
24
356
答案 0 :(得分:1)
System.out.println("1\n\n24\n\n356");
</sarcasm>
编辑您的问题并编辑我的答案;)