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

Search:

Type: Posts; User: f0rumh4x

Search: Search took 0.02 seconds.

  1. Re: concatenation of strings when entering city, state and zip code

    Lol something so simple...thank you so much. I must be getting tired.
  2. concatenation of strings when entering city, state and zip code

    I have written my code, but can't seem to figure out why it doesn't enter the while loop and start asking for Input. Any insight would be greatly appreciated. Just need a direction to go in.


    ...
  3. Re: have en error: expression must have integral or enumtype

    Is there one specific resource that would be a good reference for understanding floating point better that I can be directed to. I am always looking for more material... I can search multiple...
  4. Re: have en error: expression must have integral or enumtype

    Thank you very much...that worked. Now to keep studying.
  5. have en error: expression must have integral or enumtype

    #include <iostream>
    #include <iomanip>
    using namespace std;
    //chose to use #define since columns/rows are a constant in the program
    #define x 5
    #define y 3

    int main()
    {
    //declare variables
  6. Replies
    1
    Views
    1,441

    Unique random numbers in an array

    Below is my code for a program that is suppose to generate and display six unique random numbers (between 1 and 54). The issue seems to be in my check for duplicates. I know what I am doing wrong but...
  7. Replies
    6
    Views
    1,793

    Re: Simple program that needs tweaking

    Here is the finished product that I have been working on. And it runs without any problems now. Thanks :)


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

    int main()
    {...
  8. Replies
    6
    Views
    1,793

    Re: Simple program that needs tweaking

    Thank you for the quick replies. Leaving campus now but will be back on the forums later and let you know how it turned out.
  9. Replies
    6
    Views
    1,793

    Re: Simple program that needs tweaking

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

    int main()
    {
    //declare variables
    short numberOfTests = 0;
    short testScores = 0;
    short scoreGrade = 0;
  10. Replies
    6
    Views
    1,793

    Re: Simple program that needs tweaking

    I apologize for not being clearer with the issue. The program closes after it completes the first do while statement. There are no errors when it compiles though. I appreciate the input and this is...
  11. Replies
    6
    Views
    1,793

    Simple program that needs tweaking

    Below is the program I have written yet I can't seem to get it to work right. I have to believe that there is also I more efficient way to write this program. A little direction as to where I might...
Results 1 to 11 of 11





Click Here to Expand Forum to Full Width

Featured