hi all
ok this is my code
Qt Code:
  1. void MainWindow::on_pushButton_2_clicked()
  2. {
  3. float x,y,z;
  4. x=ui->lineEdit_3->text().toLong();
  5. y=ui->lineEdit_4->text().toLong();
  6. z=x*y;
  7. z=(float)z/100;
  8. cout<<fixed;
  9. ui->textBrowser_2->setText(b.setNum(z));
  10.  
  11. }
To copy to clipboard, switch view to plain text mode 
i dont know why still show me scientific format in textBrowser?!?
any help will be grateful.