- 谁拿了最多奖学金
- 2009-10-17 20:30:23 @
第一次调试,读名字的时候
na:array[1..100]of string;
s:char;
(用na数组存名字)
……
for i:=1 to n do
begin
read(s);
while s' ' do
begin
inc(j);
na[i][j]:=s;
read(s);
end;
……
但是名字没有输出……
调试,na数组为空,没有赋上值……
请大牛指导……
4 条评论
-
miaoyang LV 8 @ 2014-08-08 17:51:05
j的初始值呢?
-
2014-08-08 17:50:36@
sb
-
2014-08-08 17:50:30@
字符串
-
2013-07-14 14:36:19@
你的NA数组是一维二维?
- 1