Cout ile doğru sayıda ondalık nokta yazdırma


133

floatDeğerler listem var ve bunları yazdırmak istiyorumcout 2 ondalık basamakla .

Örneğin:

10.900  should be printed as 10.90
1.000 should be printed as 1.00
122.345 should be printed as 122.34

Bunu nasıl yapabilirim?

( setprecisionbu konuda yardımcı görünmüyor.)

Yanıtlar:


196

İle <iomanip>kullanabilirsiniz std::fixedvestd::setprecision

İşte bir örnek

#include <iostream>
#include <iomanip>

int main()
{
    double d = 122.345;

    std::cout << std::fixed;
    std::cout << std::setprecision(2);
    std::cout << d;
}

Ve çıktı alacaksın

122.34

6
programda neden "std: fixed" kullandınız?
Vilas Joshi

1
Bunun için kullanışlı bir başlık tanımlanabilir: #define FIXED_FLOAT(x) std::fixed <<std::setprecision(2)<<(x) bu, kullanımı basitleştirir:cout<<FIXED_FLOAT(d)
Udayraj Deshmukh

13
@VilasJoshi, setprecision ondalıktan sonraki hane sayısını ayarlayın, 5 hane varsa ve setprecision (2) kullanırsak 2 hane elde ederiz, ancak 0 hane varsa hiçbirini göstermez, sabit kullanarak o kadar basamağı düzeltiriz gösterilecek bu yüzden 5, 5.00 no 5 olarak gösterilecek
vaibnak

43

Neredeyse oradaydınız, std :: fixed'ı da kullanmanız gerekiyor, bkz. Http://www.cplusplus.com/reference/iostream/manipulators/fixed/

#include <iostream>
#include <iomanip>

int main(int argc, char** argv)
{
    float testme[] = { 0.12345, 1.2345, 12.345, 123.45, 1234.5, 12345 };

    std::cout << std::setprecision(2) << std::fixed;

    for(int i = 0; i < 6; ++i)
    {
        std::cout << testme[i] << std::endl;
    }

    return 0;
}

çıktılar:

0.12
1.23
12.35
123.45
1234.50
12345.00

18

setprecision(n)kesirli bölüm değil, tüm sayı için geçerlidir. Kesirli bölüme uygulamak için sabit nokta biçimini kullanmanız gerekir:setiosflags(ios::fixed)


12

Kabul edilen cevabı basitleştirin

Basitleştirilmiş örnek:

#include <iostream>
#include <iomanip>

int main()
{
    double d = 122.345;
    std::cout << std::fixed << std::setprecision(2) << d;
}

Ve çıktı alacaksın

122.34

Referans:


Bu benim için çalıştı: std :: cout << std :: setprecision (2) << std :: fixed << d;
Andrea Girardi

5

Tutarlı biçimlendirme isterken tamsayılarla ilgili bir sorun yaşadım.

Tamlık için yeniden yazma:

#include <iostream>
#include <iomanip>

int main()
{
    //    floating point formatting example

    double d = 122.345;
    cout << std::fixed << std::setprecision(2) << d << endl;
    //    Output:  122.34


    //    integer formatting example

    int i = 122;
    cout << std::fixed << std::setprecision(2) << double(i) << endl;
    //    Output:  122.00
}

İsim alanını kullanmadığınız için cout ve endl'den hemen önce std :: eksik.
blackforest-tom

@ blackforest-tom - Belki haklısınız, hatırlayamıyorum --- Genelde çalışma programlarını kopyalayıp yapıştırıyorum, bu yüzden bu Visual Studio'da veya başka bir yerde olduğu gibi çalışıyor olabilir.
Manohar Reddy Poreddy

3

Bir kodlama yarışmasında benzer bir sorunu yaşadım ve ben de bu şekilde hallettim. Tüm çift değerlere 2 hassasiyet ayarlama

Önce setprecision'ı kullanmak için üstbilgi ekleme

#include <iomanip>

Ardından aşağıdaki kodu ana sayfamıza ekleyerek

  double answer=5.9999;
  double answer2=5.0000;
  cout<<setprecision(2)<<fixed;
  cout <<answer << endl;
  cout <<answer2 << endl;

Çıktı:

5.99
5.00

5.00 yazmak için sabit kullanmanız gerekiyor, bu yüzden çıktınız 5.00 için gelmeyecek.

Eklediğim, yararlı olan kısa bir referans video bağlantısı


2

'Float modunu' sabit olarak ayarlamalısınız.

float num = 15.839;

// this will output 15.84
std::cout << std::fixed << "num = " << std::setprecision(2) << num << std::endl;

1

Ondalık noktadan sonra sabit 2 basamak ayarlamak için önce şunları kullanın:

cout.setf(ios::fixed);
cout.setf(ios::showpoint);
cout.precision(2);

Ardından çift değerlerinizi yazdırın.

Bu bir örnektir:

#include <iostream>
using std::cout;
using std::ios;
using std::endl;

int main(int argc, char *argv[]) {
    cout.setf(ios::fixed);
    cout.setf(ios::showpoint);
    cout.precision(2);
    double d = 10.90;
    cout << d << endl;
    return 0;
}

1
#include<stdio.h>
int main()

{

 double d=15.6464545347;

printf("%0.2lf",d);

}

0

şablonlarla

#include <iostream>

// d = decimal places
template<int d> 
std::ostream& fixed(std::ostream& os){
    os.setf(std::ios_base::fixed, std::ios_base::floatfield); 
    os.precision(d); 
    return os; 
}

int main(){
    double d = 122.345;
    std::cout << fixed<2> << d;
}

bilimsel için de benzer, ayrıca genişlik seçeneğiyle (sütunlar için kullanışlıdır)

// d = decimal places
template<int d> 
std::ostream& f(std::ostream &os){
    os.setf(std::ios_base::fixed, std::ios_base::floatfield); 
    os.precision(d); 
    return os; 
}

// w = width, d = decimal places
template<int w, int d> 
std::ostream& f(std::ostream &os){
    os.setf(std::ios_base::fixed, std::ios_base::floatfield); 
    os.precision(d); 
    os.width(w);
    return os; 
}

// d = decimal places
template<int d> 
std::ostream& e(std::ostream &os){
    os.setf(std::ios_base::scientific, std::ios_base::floatfield); 
    os.precision(d); 
    return os; 
}

// w = width, d = decimal places
template<int w, int d> 
std::ostream& e(std::ostream &os){
    os.setf(std::ios_base::scientific, std::ios_base::floatfield); 
    os.precision(d); 
    os.width(w);
    return os; 
}

int main(){
    double d = 122.345;
    std::cout << f<10,2> << d << '\n'
        << e<10,2> << d << '\n';
}

-3

Sadece küçük bir nokta; başlığa aşağıdakileri koy

ad alanı std kullanarak;

sonra

std :: cout << std :: sabit << std :: setprecision (2) << d;

basitleşir

cout << sabit << setprecision (2) << d;


2
Evet, "basitleştirildi", ancak bu kesinlikle önerilmez. Lütfen using namespace std;onun iyiliği için kullanmayın - bunu neden yaptığınızı anlayın.
Carlos F

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.