kalo93

Untitled

Feb 8th, 2015
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<conio.h>
  3.  
  4.  
  5. main(){
  6. int i[3][3];
  7. int j,x;
  8. for (j=0;j<3;j++){
  9. for (x=0;x<3;x++){
  10. printf("numero");
  11. scanf("%d",&i[j][x]);
  12. }
  13. }
  14.  
  15. for (j=0;j<3;j++){
  16. for (x=0;j<3;x++){
  17. printf("%d",i[j][x]);
  18. }
  19. }
  20. getch();
  21. }
Advertisement
Add Comment
Please, Sign In to add comment