More Delphi Basics | Part 2 | Built in Math Functions and Procedures

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ม.ค. 2025

ความคิดเห็น • 10

  • @lancemarchetti8673
    @lancemarchetti8673 2 ปีที่แล้ว +3

    Nice!

  • @zenkocylallysithelo937
    @zenkocylallysithelo937 8 หลายเดือนก่อน +1

    How do i round off a real number or any other number to certain decimal values?

    • @MrLongITandCAT
      @MrLongITandCAT  8 หลายเดือนก่อน +2

      You should use the RoundTo function. Like this:
      rNum := RoundTo( 22/7 , -2 )
      The -2 after the comma means to 2 decimal places, -1 would be to 1 decimal place, -3 to three decimal places, and so on. But you will need to add Math at the top under Uses

  • @toi_za4372
    @toi_za4372 2 ปีที่แล้ว +2

    I am trying to do the Inc procedure but with real variables
    It does not seem to work
    Please hel0

    • @MrLongITandCAT
      @MrLongITandCAT  2 ปีที่แล้ว +7

      Inc only works with ordinal types like integers. real variables are not ordinal. You can do this instead:
      rNum := rNum + 1 ;

  • @ramzamthel8014
    @ramzamthel8014 ปีที่แล้ว

    thanks

  • @Killerbeast3960
    @Killerbeast3960 8 หลายเดือนก่อน

    Why must we have a rInput variable ?

    • @MrLongITandCAT
      @MrLongITandCAT  8 หลายเดือนก่อน +2

      Which aspect are you referring too?

    • @Killerbeast3960
      @Killerbeast3960 8 หลายเดือนก่อน +2

      @@MrLongITandCAT No worry sir I have figured it out

  • @8legs_gaming510
    @8legs_gaming510 ปีที่แล้ว +1

    :)