rusi/test_ru/switch.c

21 lines
456 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// switch.c - Проверка оператора switch
цел главн(){
цел икс = 2;
цел итог = 0;
выбор (икс) {
случай 1:
итог = 10;
прерви;
случай 2:
итог = 20;
прерви;
умолч:
итог = 30;
}
если (итог == 20) {
возврат 0;
}
возврат 1;
}