Commit 9047c99b authored by zeiss's avatar zeiss
Browse files

No commit message

No commit message
parent d0b5e2a9
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
/*****************************************************************
 ** @author   STF 409
 ** @version  $Rev: 12 $
 ** @purpose  1:7.1.1, Ensure that the addition operator on 
 **           float constants is accepted.
 ** @verdict  pass accept, noexecution
 *****************************************************************/

module Sem_070101_ArithmeticOperators_008 {

const float c_result := 10.2 + 0.4;

}
+13 −0
Original line number Diff line number Diff line
/*****************************************************************
 ** @author   STF 409
 ** @version  $Rev: 12 $
 ** @purpose  1:7.1.1, Ensure that the substraction operator on 
 **           float constants is accepted.
 ** @verdict  pass accept, noexecution
 *****************************************************************/

module Sem_070101_ArithmeticOperators_009 {

const float c_result := 10.2 - 0.4;

}
+13 −0
Original line number Diff line number Diff line
/*****************************************************************
 ** @author   STF 409
 ** @version  $Rev: 12 $
 ** @purpose  1:7.1.1, Ensure that the multiplication operator on 
 **           float constants is accepted.
 ** @verdict  pass accept, noexecution
 *****************************************************************/

module Sem_070101_ArithmeticOperators_010 {

const float c_result := 10.2 * 0.4;

}
+13 −0
Original line number Diff line number Diff line
/*****************************************************************
 ** @author   STF 409
 ** @version  $Rev: 12 $
 ** @purpose  1:7.1.1, Ensure that the division operator on 
 **           float constants is accepted.
 ** @verdict  pass accept, noexecution
 *****************************************************************/

module Sem_070101_ArithmeticOperators_011 {

const float c_result := 10.2 / 0.4;

}
+13 −0
Original line number Diff line number Diff line
/*****************************************************************
 ** @author   STF 409
 ** @version  $Rev: 12 $
 ** @purpose  1:7.1.1, Ensure that a combination of operators on 
 **           float constants is accepted.
 ** @verdict  pass accept, noexecution
 *****************************************************************/

module Sem_070101_ArithmeticOperators_011 {

const float c_result := (((v_i * 2.3) / 0.4)+0.45)-0.1;

}