Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main() {
- int m[10][10];
- int l,c;
- srand(time(NULL));
- // preenchimento da matriz com números aleatório de 1 a 9
- for(l=0; l<10; l++)
- for(c=0; c<10; c++)
- m[l][c] = rand()%9 + 1;
- // exibição dos valores da matriz, formato convencional
- for(l=0; l<10; l++)
- for(c=0; c<10; c++)
- printf("m[%1d][%1d] = %1d\n",l+1,c+1,m[l][c]);
- // exibição dos valores da matriz, formato matricial
- printf("\n\n");
- for(l=0; l<10; l++) {
- for(c=0; c<10; c++)
- printf("%1d ",m[l][c]);
- printf("\n");
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement