Recent content by hk3008

  1. hk3008

    BIOS won't recognize my harddrive :\

    What the Issue I am having is the same as Ryans and others are having, as the original poster said he pulled the primary HDD out of an odler system and wanted to use it as the primary on another system but because this is the primary on the old system the new system wont recognize it, How do you...
  2. hk3008

    Integer Swapping

    and p.s. I am in coding 101 lol
  3. hk3008

    Integer Swapping

    I need the 3rd or temp variable because the two variables cannot be the same number or it will not work so I assign x to one then y to 2 then I have to sign x or y to 3 and switch the integers
  4. hk3008

    REally Simple right?

    Best answer selected by hk3008.
  5. hk3008

    Integer Swapping

    you are right if I dont understand then I wont really know but just learning the basics for me has been easier by seeing examples I have been reading forum after forum looking for info on what type of form to use for certain issues but even then it is hard to understand but some one was even...
  6. hk3008

    Integer Increase

    Ok it was actually something we did on paper in class as well made us do a chart on paper to show the increase about a month ago I was just trying to work it out in the computer and when he put it in visual studio in class he had the almost exact same code almost I was just writing it down on...
  7. hk3008

    Drawing with C++

    ok re wrote got some info to use loops insread but in trying to recreate the backwards or inverted triangle it is just an infinite loop :( any help on this? #include <iostream> using namespace std; int main() { int no_lines, // height of triangle. width; // width of...
  8. hk3008

    Integer Swapping

    ok so I have #include <iostream> #include <cmath> #include <stdio.h> using namespace std; void swap ( int &x, int &y); int main() { int number; cout << "x is "; cin >> number; int x = number; cout << "y is "; cin >> number; int y = number; swap( x, y); cout << "Swapped the...
  9. hk3008

    Drawing with C++

    ok so I have ok so I have #include <iostream> #include <cmath> #include <iomanip> using namespace std; int main() { { cout << "****"; cout << "***"; cout << "**"; cout << "*"; } { cout << "*"; cout << "**"; cout << "***"; cout << "****"; } { cout << "*"; cout << "***"...
  10. hk3008

    Integer Increase

    Ok so I put the brackets in but the logic still seems to be off as well I added the if then maybe that was not the right move any ideas? #include<cmath> #include<iostream> using namespace std; int main () { int x1 = 1; int x2 = 1; int x3 = x1 + x2; while (true) { cout << x3 << " "...
  11. hk3008

    REally Simple right?

    so end with something like cout << "This is your number (" << X << ") Press Any key to continue."; cin >> enter; } return0; }
  12. hk3008

    Integer Increase

    ok so I have #include<cmath> #include<iostream> using namespace std; int main () { int x1 = 1; int x2 = 1; int x3 = x1 + x2; while (true) cout << x3 << " "; x1 = x2; x2 = x3; x3 = x1+ x2; cout << x1 << " " << x2 << " "; return 0; } but I just get x2 repeating...
  13. hk3008

    REally Simple right?

    ok so If I wanted it to stop at the end display the results and wait for the user to hit enter to stop and exit how would I go about that?
  14. hk3008

    How To?

    so woujld Imake it where there was jsut one int main() then connect them all with { and } at the begining or end, or should I float the the results together having it print a summery at the end?
  15. hk3008

    Progreamming Converting Arabic numbers to Roman

    Best answer selected by hk3008.