Arrondir un nombre à deux décimales

Forums ProRealTime forum Français Support ProBuilder Arrondir un nombre à deux décimales

Viewing 3 posts - 1 through 3 (of 3 total)
  • #235851

    Bonjour,

    J’aurais besoin d’aide pour arrondir un nombre à deux décimales après l’avoir mis au carré.

    Comment codez-vous cela ?

    sqr(x) =>
    math.round(x * x * 100) / 100
    two_dec(x) =>
    math.round(x * 100) / 100

    Merci de votre aide

     

     

     

    #235855

    Bonjour

    par exemple :

    c100=3.642*3.642
    c101=(round(c100*100)/100)

    c101 donne l’arrondi à 2 décimales de C100

    1 user thanked author for this post.
    #235857

     

    2 users thanked author for this post.
Viewing 3 posts - 1 through 3 (of 3 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login