rusi/test_ru/goto.c

11 lines
293 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.

// goto.c - Проверка оператора goto
цел главн(){
цел х = 0;
перейти метка;
х = 1; // Эта строка должна быть пропущена
метка:
если (х == 0) {
возврат 0;
}
возврат 1;
}