Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- #include<conio.h>
- main(){
- int i[3][3];
- int j,x;
- for (j=0;j<3;j++){
- for (x=0;x<3;x++){
- printf("numero");
- scanf("%d",&i[j][x]);
- }
- }
- for (j=0;j<3;j++){
- for (x=0;j<3;x++){
- printf("%d",i[j][x]);
- }
- }
- getch();
- }
Advertisement
Add Comment
Please, Sign In to add comment