Advertisement
Guest User

......

a guest
Sep 23rd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3.  
  4. using namespace std;
  5.  
  6. void Dane(int &m, float tab[])
  7. {
  8. cout<<"Podaj ilosc elementow zbioru: ";
  9. cin>>m;
  10. cout<<"Podaj kolejno liczby: "<<endl;
  11. for(int i=0; i<m; i++){
  12. cout<<"liczba("<<i+1<<") = ";
  13. cin>>tab[i];
  14. cout<<endl;
  15. }
  16. }
  17. void Wypisz(int m, float tab[]){
  18. for}
  19.  
  20.  
  21.  
  22. int main()
  23. {
  24. cout << "Hello world!" << endl;
  25. return 0;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement