Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main(){
- int broj, broj_petki=0, nov_broj=0, stepen=1;
- scanf("%d", &broj);
- int pomosna=broj;
- while(broj>0){
- int posledna_cifra= broj%10;
- if(posledna_cifra==5){
- broj_petki++;
- }
- broj/=10;
- }
- broj=pomosna;
- if(broj_petki>=2){
- while(broj>0){
- int cifri=broj%10;
- if(cifri==5){
- cifri++;
- }
- broj/=10;
- nov_broj+=(stepen*cifri);
- stepen*=10;
- }
- broj = pomosna;
- printf("%d\n", nov_broj);
- double procent=((nov_broj-broj)*100)/(double)broj;
- printf("%.3lf%%", procent);
- }
- else {
- printf("Greska");
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement