内容提示: C语言经典例题 一次for循环完成1! +2! +. . . +10! . c main() { long s=0, n=1; int i; for(i=1; i<=10; i++) { n=n*i; s=s+n; } printf("s=%ld\n", s) ; } 杨辉三角. c main() { int a[10] [10] , x, y; for(x=0; x<10; x++) for(y=0;...