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