
Write a condition that is true when integer A is not a multiple of three and ends in zero.

Write a condition that is true when integer A is not a multiple of three and ends in zero.
One of the main mistakes (besides syntax) is that there are no condition checks:
And not a multiple of three and ends in zero.
program TrueFalse; var x: integer; begin Writeln('Для выхода введите 666...'); x := ReadlnInteger('Введите число: '); While (x <> 666) do begin If ((x mod 3 <> 0) and (x mod 10 = 0)) Then Writeln('TRUE - условие выполнено!') Else Writeln('FALSE - число не удовлетворяет условию!'); x := ReadlnInteger('Введите число: '); end; Writeln('Выход'); Read(); end. if ... then false for example. Variable A declared but not used, but this is not entirely a mistake. - slippykelse there and just skipped the code for the branches. - GrundyОжидалось имя процедуры или функции - slippykSource: https://ru.stackoverflow.com/questions/532616/
All Articles
whileout of place at all ... - pavelостальное пишитеnormally, this task will not cause you problems. And math (if you don't know it) can be searched on the Internet - Vasily Barbashev