Цитата(SEREDA @ Jun 29 2010, 18:33)

ЗДРАВСТВУЙТЕ. МНЕ НУЖНО БЫЛО ЗАПИСАТЬ В Var Eqn (ПЕРЕМЕННЫЕ И УРОВНЕНИЯ) СЛЕДУЮЩЕЕ НЕРАВЕНСТВО: U= 12 ЕСЛИ T<5: ЕСЛИ 5<T<10 ТО U=15: ЕСЛИ Т>10 ТО U=20. ИЛИ ЧТОТО В ЭТОМ РОДЕ. В ЛИТЕРАТУРЕ КОТОРАЯ У МЕНЯ ЕСТЬ ЭТОГО НЕ ПРИВОДИТСЯ. ЗАРАНЕЕ БЛАГОДАРЮ.
Use of if...then...else...endif statements An equation can use a conditional statement: if ( conditional expression) then ( expression1) else (expression2) endif. For example,
X = 1
Y = if ( X>0) then ( cos( pi/8) ) else ( sin( pi/8) ) endif
The conditional expression can be a simple or complex numeric conditional expression with arguments separated by the standard symbols:
< > <= >= = != &&
Each expression can be any valid numeric expression. The entire if...then...else...endif expression must be on one line.