#include "stdio.h" void main() { int n; printf("请输入n的值:"); scanf("%d",&n); while(n>0) { if(n>1) { printf("**\n"); } else { printf("*\n"); } n--; } }