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;
- while(kopija!=0)
- {
- i++;
- kopija/=10;
- }
- if(i%2!=0)
- {
- i=i/2;
- broj/=pow(10.0, i);
- cout <<"Srednja znamenka je: "<<broj%10<<endl;
- }
- else
- cout <<"Ne postoji srednja znamenka!"<<endl;
- system("PAUSE>0");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment