Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include <iostream>
  2. #include "funkce.h"
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. int n;
  9. cout<< "Zadejte pocet prvku" << endl;
  10. cin>> n;
  11. int a = spocitatN(int n);
  12. cout << "Soucet prvnich " << n << "prirozenych cisel je: " << a << endl;
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement