你礼貌吗

liujunhao 2023-12-02 11:23:37 3 返回题目

#include<bits/stdc++.h>

using namespace std;

int main(){

int n;

scanf("%d", &n);

for(int i=1;i<=3;i++){

    for(int j=1;j<=n;j++){

        cout<<"*";

    }

    cout<<"\n";

}

}

{{ vote && vote.total.up }}