fork download
  1. #include <stdio.h>
  2. #include<stdlib.h>
  3.  
  4. int main(){
  5. //int n;
  6. //scanf("%d",&n);
  7. int tab[3][3];
  8. int i,j,tmp;
  9.  
  10. // wprowadzenie danych
  11. for(i=0;i<3;i++){
  12. for(j=0;j<3;j++){
  13. printf("Prosze podac element tab[%d][%d]:",(i+1),(j+1));
  14. scanf("%d",&tab[i][j]);
  15. }
  16. }
  17.  
  18. // wyswietlenie
  19. for(i=0;i<3;i++){
  20. for(j=0;j<3;j++){
  21. printf("%d\t",tab[i][j]);
  22. }
  23. printf("\n");
  24. }
  25. system("pause");
  26. printf("przykladowe zadanie\n");
  27. for(i=0;i<3;i++){
  28. for(j=0;j<3;j++){
  29. if(tab[i][j]==2){
  30. printf("w tablicy jest element 2\n");
  31. break;}
  32. }
  33. }
  34. system("pause");
  35. return 0;
  36. }
Success #stdin #stdout #stderr 0s 2116KB
stdin
1
2
3
4
5
6
7
8
9
stdout
Prosze podac element tab[1][1]:Prosze podac element tab[1][2]:Prosze podac element tab[1][3]:Prosze podac element tab[2][1]:Prosze podac element tab[2][2]:Prosze podac element tab[2][3]:Prosze podac element tab[3][1]:Prosze podac element tab[3][2]:Prosze podac element tab[3][3]:1	2	3	
4	5	6	
7	8	9	
przykladowe zadanie
w tablicy jest element 2
stderr
sh: 1: pause: not found
sh: 1: pause: not found