Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main() {
- int broj;
- cin >> broj;
- int orginalna_vrednost = broj;
- int kolku_cifri = 0;
- while(broj > 0) {
- kolku_cifri++;
- broj /= 10;
- }
- broj = orginalna_vrednost;
- if(kolku_cifri % 2 == 1) {
- int koja_cifra = kolku_cifri / 2 + 1;
- int sredna_cifra;
- while(koja_cifra > 0) {
- sredna_cifra = broj % 10;
- broj /= 10;
- koja_cifra--;
- }
- cout << sredna_cifra << endl;
- }
- else {
- cout << broj << endl;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement