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