Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main()
- {
- int min = 9, max = 0;
- int cifra;
- int broj;
- do
- {
- printf("Unesite broj: ");
- scanf("%d", &broj);
- } while(broj < 0); //ovo ti je uslov za ono da ti broj ne bude manji od 0
- while(broj > 0) //ovo ti je uslov dok ne dodjes do 0 da ti komada broj
- {
- cifra = broj%10;
- if(cifra > max) max = cifra;
- if(cifra < min) min = cifra;
- broj /= 10;
- }
- printf("Najveca i najmanja cifra: %d %d", max, min);
- return 0;
- }
Add Comment
Please, Sign In to add comment