10月10日

#include<iostream>
using namespace std;

int main(){
    int i,j;
    for(i=1;i<=60;i++){
        for(j=1;j<=50;j++){
            cout<<"*";
        }
        cout<<endl;
        }
}
原文地址:https://www.cnblogs.com/aipopo/p/7784430.html