#include<bits/stdc++.h>
using namespace std;
//让计算机显示如下图形
//*
//**
//***
//****
//输出格式
// 输出总共有4行,每行后面没有多余的空格,都有一个换行符。
//*
//**
//***
//****
int main(){
cout<<"*"<<endl;
cout<<"**"<<endl;
cout<<"***"<<endl;
cout<<"****"<<endl;
return 0;
}

被折叠的 条评论
为什么被折叠?



