题解 | #反斜线形图案#
反斜线形图案
https://www.nowcoder.com/practice/7b066963c4eb4d188becd18c37dfe22d
#include <stdio.h> int main() { int n=0; while(scanf("%d",&n)!=EOF) { for(int j=0;j<n;j++) { if(j==0) { printf("*\n"); } else { for(int i=0;i<j;i++) { printf(" "); } printf("*\n"); } } } return 0; }