Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main(){
- int n;
- int prethodna_najgolema_cifra = 0;
- while(scanf("%d", &n)) {
- int zbir_na_cifri = 0;
- int najgolemata_cifra = 0;
- int pom = n;
- while(pom > 0) {
- int cifra = pom % 10;
- pom /= 10;
- if(cifra > najgolemata_cifra) {
- najgolemata_cifra = cifra;
- }
- zbir_na_cifri += cifra;
- }
- printf("%d: %d\n", n, zbir_na_cifri + prethodna_najgolema_cifra);
- prethodna_najgolema_cifra = najgolemata_cifra;
- }
- return 0;
- }
- /*
- 342
- 345
- **/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement