28.03.2015, 22:13
Quote:
Код:
new variable, falto, cantidad_faltantes; main() { for(new e = 0; e < 11; e++) { if(e == 1){ variable --; continue; falto = e; cantidad_faltantes++; } else { variable++; printf("%d", e); printf("%d variable",variable); if(variable < e) { print("falta un numero"); printf("falto el numero %d, cantidad de numeros faltantes %d", falto, cantidad_faltantes); } } } } |