for循环作业1

#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/928990166li/p/7657772.html