Write a program to get a float value from the user and display it in the below-mentioned format. HINT: Use ceil() and floor() functions from the header file. Input & Output Format: Input consists of ...
DATA: lv_discounted TYPE p LENGTH 4 DECIMALS 3 VALUE '0.923'. brtwr * @lv_discounted AS discounted_price, CEIL( brtwr * @lv_discounted ) AS ceil_price, FLOOR( brtwr * @lv_discounted ) AS floor_price ...