CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: bertonius

Search: Search took 0.04 seconds.

  1. Replies
    3
    Views
    988

    Re: Celcius Conversion Loop

    Thank you, Paul. I changed the formula to (1.8 * c) + 32 instead, and it is working. Here's what it looks like now:


    # include <iostream>
    # include <iomanip>
    using namespace std;

    int main()...
  2. Replies
    3
    Views
    988

    Celcius Conversion Loop

    So everything seems to be working fine here, but after the first calculation that converts 0C to 32F, it just adds increments of 1 to each Fahrenheit. Why isn't the formula being repeated for each...
  3. Replies
    2
    Views
    1,069

    Re: Inexperienced Needing Help

    Can anyone point me in the right direction to solve this? I still haven't found a solution.
  4. Replies
    2
    Views
    1,069

    Inexperienced Needing Help

    I know it is a mess right now, but I've been trying to figure out a solution for a few days and tried several things. Basically, I have two list boxes for locations and workshops(. I don't know how...
  5. Replies
    5
    Views
    7,665

    Re: Beginner C# Program Help Please :)

    Thanks guys, that was it. That was pretty silly of me, but now I know a lot more about actual debugging. Cheers
  6. Replies
    5
    Views
    7,665

    Re: Beginner C# Program Help Please :)

    Thanks for the reply Arjay. I thought I had taken a shot of the output after debugging. I am just selecting "debug" and then "start debugging." This is what happens when I debug(no errors). I input 1...
  7. Replies
    5
    Views
    7,665

    Beginner C# Program Help Please :)

    Writing a pretty simple cost calculator, and everything is coming out right except the total of everything. Why is the total for everything displaying placeholders instead of numbers, and how can I...
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured