#include main() { int broj; printf("Unesite cetvorocifreni broj: "); scanf("%d", &broj); // 1234 int cifra_jedinica = broj % 10; // 4 int cifra_desetica = (broj / 10) % 10; // (1234 / 10) % 10 = 123 % 10 = 3 int cifra_stotina = (broj / 100) % 10; // (1234 / 100) % 10 = 12 % 10 = 2 int cifra_hiljada = broj / 1000; // 1234 / 1000 = 1 int novi_broj = cifra_hiljada * 1000 + cifra_jedinica * 100 + cifra_desetica * 10 + cifra_stotina; printf("Novi broj: %d\n", novi_broj); }