题解 | #K形图案#

K形图案

https://www.nowcoder.com/practice/753cc2662d9949fe826a85f815db0ca4

#include<iostream>
#include<cmath>
using namespace std;
int main()
{
    int k;
    while (cin >> k)
    {
        
        for (int i = 0; i < 2*k+1; i++)
        {
            cout << "* ";
            for (int j = 0; j < k; j++)
            {
                if (j < abs(k - i)) cout << "* ";
                else cout << " ";
            }           
            cout << endl;
        }
   }
    return 0;
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

喜欢走神的孤勇者练习时长两年半:池是池,发是发,我曾池,我现黑
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务