我正在学习Fortran,我已经完成了这个程序,以学习如何处理字符串:
program use_strings
character(100) :: theStr
integer :: strLen
theStr = "THIS IS A NICE LITTLE STRING!"
strLen = len_trim(theStr)
print *, "This is the len_trim of the string ", theStr, ": " ,strLen
end program use_strings
我预期的输出是:
这是字符串的len_trim这是一个很小的字符串!:29
但我得到了这个:
这是字符串
的len_trim
这是一个很好的小弦!
“TAB(s?)”:“TAB(s?)”29
问题 并不是'TAB(s?)'表示终端上印有标签。所以,我的问题是:如何在终端的一行上打印出来?