fork download
  1. #include <stdio.h>
  2. int main ( ) {
  3. int x;
  4. float a;
  5. printf("Введите число");
  6. scanf("%f",&a);
  7. if (x>0 || x<10) printf(" Невысокая");
  8. else{
  9. if (x>11 || x<25) printf("Средняя");
  10. else
  11. if (x>26 || x<50) printf("Высокая");
  12. else
  13. if (x>51 || x<100) printf("Очень высокая");
  14. else
  15. if (x>100) printf("Революционная");
  16. else
  17. printf("Нет такой шкалы");
  18. }
  19. return 0;
  20. }
Success #stdin #stdout 0s 9432KB
stdin
52
stdout
Введите число Невысокая