C语言程序设计循环嵌套三种嵌套样式样式1: 样式2: 样式3:while( ) while( ) for(;) while( ) do for(;) while( ); 多重循环举例【例】从三个红球、五个白球、六个黑球中任意取出八个球,且其中必须有白球,输出所有可能的方案。#include void main() int a,b,c;printf(n redt whitet blackn);for(a=0;a=3;a+) for(b=1;b=0&c=6) printf(%dt %dt %dtn,a,b,c); 输出菱形 * * * * * * * 行号 空格 星号 1 3 1 2 2 3 3 1 5 4 0 7 行号 空格 星号 1 0 7 2 1 5 3 2 3 4 3 1空 = 4 - 行空 = 行 - 1星 = 2*行 - 1星 = 9 - 2*行分析下列两个程序的运行结果#include main() int i,j;for (i=1;i=10;i+)for (j=1;j=10;j+) printf(%dt,j);printf(n); #include main() int i