Advertisement
catalyn

tema pt 30.10.2014 var 3 neterminata

Oct 30th, 2014
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4. int S1 (int n)
  5. {
  6. int cif,k;
  7. while(n)
  8. {
  9. cif=n%10;
  10. k++;
  11. n/=10;
  12. }
  13. return k;
  14. }
  15. int S2 (int n,int k)
  16. {
  17. int
  18.  
  19. }
  20. int main()
  21. {
  22. cout << "Hello world!" << endl;
  23. return 0;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement