1 条题解

  • 0
    @ 2021-6-15 12:54:19

    C++ :

    #include<bits/stdc++.h>
    using namespace std;
    
    int main()
    {
    	for(int i=0;i<2;i++,cout<<endl)
    	{
    		for(int j=0;j<20;j++)
    		{
    			cout<<"*";
    		}
    	}
    	return 0;
    }
    

    Pascal :

    var i:integer;
    begin
        for i:=1 to 20 do
        begin
            write('*');
        end;
        writeln;
        for i:=1 to 20 do
        begin
            write('*');
        end;
    end.
    
    • 1

    用for语句打印二行星号(每行20个)

    信息

    ID
    628
    时间
    1000ms
    内存
    128MiB
    难度
    (无)
    标签
    递交数
    0
    已通过
    0
    上传者