如何在 AMPL 中打印在同一行
How to print in the same line in AMPL
大家晚上好!我有这个愚蠢的问题,但我在语言手册中找不到解决方案。它开始似乎是不可能的。到目前为止,我已经尝试使用:
print "Write something";
print "This is not in the same line";
我知道我可以将字符串与 &
连接起来,但这并不能解决我的用例。有谁知道如何在 AMPL 中在同一行打印?
printf "Write something";
printf "This is in the same line";
printf "\nThis is a new line";
有关选项的更多详细信息,请参阅 AMPL printf
documentation。 print
适用于简单的输出语句,printf
为您提供更多微观管理输出打印方式的能力。
大家晚上好!我有这个愚蠢的问题,但我在语言手册中找不到解决方案。它开始似乎是不可能的。到目前为止,我已经尝试使用:
print "Write something";
print "This is not in the same line";
我知道我可以将字符串与 &
连接起来,但这并不能解决我的用例。有谁知道如何在 AMPL 中在同一行打印?
printf "Write something";
printf "This is in the same line";
printf "\nThis is a new line";
有关选项的更多详细信息,请参阅 AMPL printf
documentation。 print
适用于简单的输出语句,printf
为您提供更多微观管理输出打印方式的能力。