标签:-- length span bsp for blog class style color
#include<stdio.h> int main() { int a[100]; int b=0; int length=100; for(b=0;b<100;b++) { a[b]=b+1; if(a[b]%3!=0 && a[b]%7!=0) { printf("剩余的数是:%d\n",a[b]); } else { length--; } } printf("剩余的数的个数是:%d",length); }
#include<stdio.h> int main() { int a[10][10]; int b; int c; for(b=0;b<=9;b++) for(c=0;c<=9;c++) { a[b][c]=(b+1)*(c+1); } for(b=0;b<9;b++) { for(c=0;c<9;c++) { printf("%d ",a[b][c]); } printf("\n\n"); } }
#include<stdio.h> int main() { int a[10][10]; int b; int c; for(b=10;b>=1;b--) for(c=10;c>=1;c--) { a[b][c]=(b-1)*(c-1); } for(b=10;b>=1;b--) { for(c=10;c>=1;c--) { printf("%d ",a[b][c]); } printf("\n\n"); } }
#include<stdio.h> int main() { int a[3][4]; int b; int c; for(b=0;b<3;b++) for(c=0;c<4;c++) { a[b][c]=b+1; } for(b=0;b<3;b++) { for(c=0;c<4;c++) { printf("%d ",a[b][c]); } printf("\n"); } printf("\n\n\n"); for(c=0;c<3;c++) for(b=0;b<4;b++) { a[b][c]=c+1; } for(c=0;c<3;c++) { for(b=0;b<4;b++) { printf("%d ",a[c][b]); } printf("\n"); } }
标签:-- length span bsp for blog class style color
原文地址:http://www.cnblogs.com/160809313-hmh/p/6075821.html