Advertisement
programusy

Untitled

Feb 19th, 2024
6
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int i;
  6. int liczba1 = 1;
  7. int liczba2 = 2;
  8. int suma;
  9. double srednia;
  10.  
  11. int* p_liczba1;
  12. int* p_liczba2;
  13. int* p_suma;
  14. double* p_srednia;
  15.  
  16.  
  17. int tab[10];
  18.  
  19. int main()
  20. {
  21. suma = liczba1 + liczba2;
  22.  
  23. p_liczba1 = &liczba1;
  24. p_liczba2 = &liczba2;
  25. p_suma = &suma;
  26.  
  27. cout << "Suma wynosi: " << suma << endl;
  28. cout << p_liczba1 << endl;
  29. cout << p_liczba2 << endl;
  30. cout << p_suma << endl;
  31.  
  32. *p_liczba1 = 11;
  33. *p_liczba2 = 12;
  34. *p_suma = *p_liczba1 + *p_liczba2;
  35.  
  36. cout << "Suma przez wskazniki wynosi: " << *p_suma << endl;
  37. cout << *p_liczba1 << endl;
  38. cout << *p_liczba2 << endl;
  39. cout << *p_suma << endl;
  40.  
  41. for(i=0; i<10; i++)
  42. {
  43. tab[i] = i + 1;
  44. }
  45.  
  46. for(i=0; i<10; i++)
  47. {
  48. cout << tab[i] << " ";
  49. }
  50. cout << endl;
  51.  
  52. cout << *tab << endl;
  53. cout << *(tab + 4) << endl;
  54.  
  55. for(i=0; i<10; i++)
  56. {
  57. *(tab + i) = i + 100;
  58. }
  59.  
  60. for(i=0; i<10; i++)
  61. {
  62. cout << tab[i] << " ";
  63. }
  64. cout << endl;
  65.  
  66. cout << *tab << endl;
  67. cout << *(tab + 4) << endl;
  68.  
  69. for(i=0; i<10; i++)
  70. {
  71. *p_srednia = *(tab + i) / 10;
  72. }
  73.  
  74. for(i=0; i<10; i++)
  75. {
  76. cout << tab[i] << " ";
  77. }
  78. cout << endl;
  79.  
  80. cout << "Srednia wynosi: " << p_srednia << endl;
  81.  
  82. return 0;
  83. }
  84.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement