limun11

Untitled

Nov 25th, 2015
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int broj;
  6. int kopija, i=0;
  7. cout <<"Unesi broj: ";
  8. cin >> broj;
  9. kopija=broj;
  10. while(kopija!=0)
  11. {
  12. i++;
  13. kopija/=10;
  14. }
  15. if(i%2!=0)
  16. {
  17. i=i/2;
  18. broj/=pow(10.0, i);
  19. cout <<"Srednja znamenka je: "<<broj%10<<endl;
  20. }
  21. else
  22. cout <<"Ne postoji srednja znamenka!"<<endl;
  23. system("PAUSE>0");
  24. return 0;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment