Search:

Type: Posts; User: getName(C-Dub)

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    2,319

    I'm not sure if this is correct, but why not use...

    I'm not sure if this is correct, but why not use static_cast<int>(1.00). I'm not sure if it's written correctly, but it changes the double into an integer.
  2. Replies
    3
    Views
    3,292

    I'm sure you have to use #include . In...

    I'm sure you have to use #include <iomanip>. In the cout statement when displaying the output, you should have something like this (I'm using dev- C++):
    cout << fixed << showpoint << setprecision(3)...
  3. Replies
    4
    Views
    12,213

    I understand what you mean, but I ran into a...

    I understand what you mean, but I ran into a problem before I decided to just use a single testScore variable than 5 separate variables. Here's what problems arised: what if all the scores are...
  4. Replies
    4
    Views
    12,213

    Lowest Score Drop - C++

    Hi everyone, I'm relatively new at C++ - knowning most of the basic rules and various structures of a C++ program - but I'm having a hard time developing a code - without the use of an arry (haven't...
Results 1 to 4 of 5