【题目】C语言实验——for循环打印图形(循环结构)Description通过使用双重for循环语句,打印下列图形:***Input Output Sample Input Sample Output*** Source 相关知识点: 试题来源: 解析 【解析】#include "stdio.h"#include "math.h"void main () { int i,j,k,n; printf("输入n "); scanf f'%a^(''...
C语言实验——for循环打印图形(循环结构)Description 通过使用双重for循环语句,打印下列图形: * *** *** *** *** *** * Input Output Sample Input Sample Output * *** *** *** *** *** * Source 相关知识点: 试题来源: 解析 #include ...
#include "stdio.h" #include "math.h" void main () { int i,j,k,n; printf("输入n\n"); scanf("%d",&n); for(i=1;i<=n;i++) { for(k=1;k<=n-i;k++) printf(" "); for(j=1;j<=2*i-1;j++) printf("*"); printf("\n"); } for(i=1;i<=n-1;i++) {f...