pascal中如何讀入一行資料,Pascal怎麼實現一行輸入N個數?

2023-01-18 01:46:04 字數 690 閱讀 7766

1樓:匿名使用者

while not eoln do

begin

read(a[i]);

end;

2樓:魍幽之帝

var a:array[1..1000] of integer;

i:integer;

begin

while not eoln do begin i:=i+1; read(a[i]); end;

end.望採納

3樓:匿名使用者

readln就是讀一行 直到#10#13

pascal怎麼實現一行輸入n個數?

4樓:匿名使用者

在pascal程式中,read語句支援一行輸入多個數;

可以打readln(a[1],a[2],a[3].............);//省略.......

或者打for i:= 1 to n do

read(a[i]);

readln;

在輸入時,

輸入一個數然後空格,再輸另一個數,

空格(在輸入時空格的作用相當於回車)

5樓:ilc小閘蟹

輸入一個數然後空格,再輸另一個數,空格(在輸入時空格的作用相當於回車)

EXCEL表中如何在一行資料中同時包含其中兩個數,如A1 E1為1,2,3,4,5,同時含有2和

f1單元格寫入公式 if and countif a1 e1,2 countif a1 e1,5 同時含有2,5 沒有同時含有2,5 或 if and countif a1 e1,同時含有2,5 沒有同時含有2,5 下拉複製公式 真不明白你說的啥?同時包含怎麼樣,不包含又怎樣?能否再表達清楚 exc...

oracle資料庫怎麼往表中的某一行資料的字

在insert into語句中新增指定的欄位即可。如以下資料 test1表中 test表與test1表結構相同,但目內前無數容據,現在要求將test1中的id插入到test中,不處理name欄位,可用如下語句 insert into test id select id from test1 mit ...

mysql怎麼修改指定的一行資料

string tel 13788888888 sql update table person t set t.tel tel where t.id id import table importtable 的延申功能 可定製化行輸入。import table importtable 我們之前有介紹過,...