marknsap
marknsap
Tuesday, March 6, 2012
ABAP how to round number
DATA: mark_VALUEUNROUNDED type i,
mark_INTVAL type i.
mark_VALUEUNROUNDED = '4.01' .
mark_INTVAL = CEIL(
mark_VALUEUNROUNDED ).
WRITE:/ 'THIS IS AN OUTPUT ROUNDED to the nearest integer = ' , mark_INTVAL.
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment