Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- void funkcija(int x) {
- while(x > 0) {
- int posledna_cifra = x % 10;
- int pretposledna_cifra = (x / 10) % 10;
- int dvocifren_broj = pretposledna_cifra * 10 + posledna_cifra;
- if(dvocifren_broj >= 26) {
- printf("Z");
- }
- else {
- printf("%c", 'A' + dvocifren_broj);
- }
- x /= 100;
- }
- }
- int main() {
- int n;
- scanf("%d", &n);
- funkcija(n);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement