limun11

Untitled

Nov 25th, 2015
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.43 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.     int srednja;
  11.     while (kopija != 0)
  12.     {
  13.         i++;
  14.         kopija /= 10;
  15.     }
  16.     if (i % 2 != 0)
  17.     {
  18.         srednja = (i + 1) / 2; //GLUPA LINIJA KODA ALI SAM JOJ DOHAKALA
  19.         cout << "Srednja je: " << srednja;
  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