题解 | #反斜线形图案#
反斜线形图案
https://www.nowcoder.com/practice/7b066963c4eb4d188becd18c37dfe22d
#include <stdio.h>
int main() {
int a;
while (scanf("%d", &a) != EOF) {
for (int i = 0; i < a; i++) {//打印行数
for(int j = i; j > 0; j--) //打印每行空格
printf(" ");
printf("*\n");
}
}
return 0;
}
查看10道真题和解析