蓝桥0531-输出Y
作者:互联网
#include <cstdio> #include <cstring> #include <iostream> #include <stdio.h> #include <iomanip> #include <string> using namespace std; int main() { int n; cin >>n; // for(int i = 0;i< 2*n - 1;i++) // { // cout << "*"; // } // cout << endl; for(int i = 0;i< 2*n - 1;i++) { if(i < n - 1) { cout << setw(i + 1) << "*" <<setw(2 * n - 2 * i - 2) << "*" << endl; } else { cout << setw(n) << "*" << endl; } } return 0; }
标签:std,0531,main,输出,int,蓝桥,include 来源: https://www.cnblogs.com/leesymbol/p/13970459.html