聪明蛋题解
2024-11-06 21:16:26
发布于:江苏
0阅读
0回复
0点赞
#include <bits/stdc++.h>
// #define int long long
using namespace std;
using ll = long long;
using ull = unsigned long long;
signed main()
{
// ios::sync_with_stdio(false);
// cin.tie(0);
// cout.tie(0);
// freopen(".in", "r", stdin);
// freopen(".out", "w", stdout);
int n;
char a;
cin >> n >> a;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
cout << a;
}
cout << endl;
}
return 0;
}
这里空空如也
有帮助,赞一个