| C (Уровень 1) |
| 1 | printf printf printf int %d int %d int %d float %f float %f float %f printf("Hi"); printf("Hello"); int x = 1; printf("x = %d", x); float y = 2.5; printf("y = %.1f", y); float summa = 0; summa = x + y; printf("%d + %d = %d", x, y, summa) |
Комментарии