如果你要输出常量,那么只能在前面加空格。也就是变成 “ abcs”如果你要输出变量,比如变量名是 cstr = "abcs",那么必须要求cstr的长度是9。然后这样:program ex1implicit nonecharacter(9) cstrcstr = 'abcs'write(*,*) adjustr(cstr)end