Mọi người ơi cho em hỏi với:
Dựa vào hình 1.5 làm thế nào để viết chương trình yêu cầu máy tính chào mình 10 lần?
Mọi người ơi cho em hỏi với: Dựa vào hình 1.5 làm thế nào để viết chương trình yêu cầu máy tính chào mình 10 lần?
Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Hãy giúp đỡ người khác giải quyết rắc rối, và rắc rối của bạn sẽ biến mất.
uses crt;
var
I,j:byte;
begin
clrscr;
for i:=0 to 9 do
begin
for j:=1 to 10 do write(10*i+j:5);
writeln;
end;
readln