Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int broj;
- int kopija, i = 0;
- cout << "Unesi broj: ";
- cin >> broj;
- kopija = broj;
- int srednja;
- while (kopija != 0)
- {
- i++;
- kopija /= 10;
- }
- if (i % 2 != 0)
- {
- srednja = (i + 1) / 2; //GLUPA LINIJA KODA ALI SAM JOJ DOHAKALA
- cout << "Srednja je: " << srednja;
- }
- else
- cout << "Ne postoji srednja znamenka!" << endl;
- system("PAUSE>0");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment