题解 | #小飞机#
小飞机
https://www.nowcoder.com/practice/5cd9598f28f74521805d2069ce4a108a
#include <stdio.h>
int main()
{
printf("%7s\n", "**");
printf("%7s\n", "**");
printf("************\n");
printf("************\n");
printf("%8s\n", "* *");
printf("%8s\n", "* *");
return 0;
}

查看29道真题和解析