Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. how to print the float value?
Forum Updated to NodeBB v4.3 + New Features

how to print the float value?

Scheduled Pinned Locked Moved Solved General and Desktop
3 Posts 2 Posters 1.0k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • K Offline
    K Offline
    karti gesar
    wrote on last edited by
    #1

    Hi all,
    i am trying to print float value in qlabel..

    i tried this ..
    float f=1/32;
    qDebug()<<f;
    QString time = QString::number(t1);
    timer_txt->setText(time);

    output should print 0.03125 but it print 0

    help me...

    J.HilkJ 1 Reply Last reply
    0
    • K karti gesar

      Hi all,
      i am trying to print float value in qlabel..

      i tried this ..
      float f=1/32;
      qDebug()<<f;
      QString time = QString::number(t1);
      timer_txt->setText(time);

      output should print 0.03125 but it print 0

      help me...

      J.HilkJ Offline
      J.HilkJ Offline
      J.Hilk
      Moderators
      wrote on last edited by
      #2

      @karti-gesar

      hi, float f=1/32; is interpreted as int/int and results in int => 0

      try to cast one variable or add a dezimal point

      //this
      float f=1/static_cast<float>(32);
      
      //or
      float f=1/32.0;
      

      Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


      Q: What's that?
      A: It's blue light.
      Q: What does it do?
      A: It turns blue.

      1 Reply Last reply
      6
      • K Offline
        K Offline
        karti gesar
        wrote on last edited by
        #3

        thank for ur help ...

        1 Reply Last reply
        0

        • Login

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • Users
        • Groups
        • Search
        • Get Qt Extensions
        • Unsolved