救民于水火

x-hechengye 2022-08-07 14:37:39 6 返回题目

#include <bits/stdc++.h>
using namespace std;
int n;
int main(){
	cin>>n;
	for(int i=1;i<=n;i++){
		for(int j=1;j<=n;j++){
			cout<<"*";
		}
		cout<<endl;
	}
	return 0;
}
{{ vote && vote.total.up }}