Thread: More digits in output, particular digits output, output in *.txt

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Registered User
    Join Date
    Nov 2005
    Posts
    13

    More digits in output, particular digits output, output in *.txt

    I've started programming 1 week ago and I use win32 console for an output.

    In program which calculates pi:
    Code:
    Code:
    #include <iostream>
    #include <math.h>
    using namespace std;
    
    int main()
    {
      double b=-1;
      double pi=acos(b);
      cout << pi << endl;
      
      system("PAUSE");	
      return 0;
    }
    The output is:
    Output:
    Code:
    3.14159
    I know that computer calculated pi with much higher precision, so how do I get, I don't know... 15 digits on the output screen?

    One more related question. I'm trying to write a random number generator program, since I've noticed that the rand() function doesn't have the uniform distribution of random number values, and for that I need a function that would "cut" double variable started from some decimal value to some other decimal value. For example, if I have a double variable number pi=3.141592654... I want a new integer variable with value from 3rd to 6th digit, int a=592. How do I do that?

    The final question. If I want to test relationship between many output variables it would be very usefull if program could put these values in a txt file. How do I do that? Remember (I don't know if that maters) I'm programming (or trying to ), that is, the output is in win32 console.

    Thank you!
    Last edited by Ene Dene; 11-30-2005 at 05:19 AM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Having trouble making a function do what I want.
    By Shamino in forum C++ Programming
    Replies: 9
    Last Post: 12-07-2007, 11:20 AM
  2. Base converter libary
    By cdonlan in forum C++ Programming
    Replies: 22
    Last Post: 05-15-2005, 01:11 AM
  3. Need help fixing bugs in data parsing program
    By daluu in forum C Programming
    Replies: 8
    Last Post: 03-27-2003, 06:02 PM
  4. Control different DA output value!
    By Hunterhunter in forum A Brief History of Cprogramming.com
    Replies: 1
    Last Post: 03-13-2003, 12:11 PM