Search:

Type: Posts; User: marcusbankuti

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    7
    Views
    1,854

    Why does the program take a second to react...

    Why does the program take a second to react (making the total time more than it should)
  2. Replies
    10
    Views
    2,789

    Doesn't work either. "name lookup of 'i' changed...

    Doesn't work either. "name lookup of 'i' changed for new ANSI scoping"

    "Using obsolete binding at 'i'"
  3. Replies
    10
    Views
    2,789

    What's wrong with this code? I can't find a parse...

    What's wrong with this code? I can't find a parse error (according to my compiler the parse error is before if)

    #include <stdlib.h>
    #include <iostream.h>
    #include <time.h>
    #include <string.h>...
  4. Replies
    7
    Views
    1,854

    How would a program using that look?

    How would a program using that look?
  5. Replies
    7
    Views
    1,854

    How would I make a stopwatch program?

    I was wondering what method I would use to count upwards in seconds instead of near instantly.
  6. Replies
    10
    Views
    2,789

    Ohhhh, function with the system clock. How do I...

    Ohhhh, function with the system clock. How do I make it function absolutely at random?
  7. Replies
    10
    Views
    2,789

    Thanks, now different nums come up, but why are...

    Thanks, now different nums come up, but why are they all in the same range? (example when %500, it is 426, 438, 416, etc.)
  8. Replies
    12
    Views
    1,065

    Thanks alot.

    Thanks alot.
  9. Replies
    10
    Views
    2,789

    compiler error. "implicit declaration of...

    compiler error.

    "implicit declaration of function 'int randomize(...)"
  10. Replies
    12
    Views
    1,065

    3 compiler errors: case label `(num == 1)'...

    3 compiler errors:

    case label `(num == 1)' does not reduce to an interger constant

    case label `(num == 2)' does not reduce to an interger constant

    warning: unreachable code at beginning of...
  11. Replies
    12
    Views
    1,065

    Where? Can't find.

    Where? Can't find.
  12. Replies
    10
    Views
    2,789

    Random Problem Generator

    #include <iostream.h>
    #include <stdlib.h>
    #include <string.h>
    #include <conio.h>

    int main()
    {
    int a;
    a==rand(5);
    cout << a << "\n";
  13. Replies
    15
    Views
    3,141

    c++ is c++ isn't it? Is there different...

    c++ is c++ isn't it? Is there different variations for windows and dos?
  14. Replies
    15
    Views
    3,141

    Well, I have the code to make a window ...

    Well, I have the code to make a window

    #include <windows.h>

    /* Declare Windows procedure */
    LRESULT CALLBACK WindowProcedure(HWND, UINT, WPARAM, LPARAM);
    /* Make the class name into a global...
  15. Replies
    12
    Views
    1,065

    #include #include ...

    #include <iostream.h>
    #include <stdlib.h>
    #include <conio.h>
    int main()
    {
    double num2;
    int num;
    cout << "Please input the starting number: ";
    cin >> num2;
    cout << "1. Positive 2....
  16. Replies
    12
    Views
    1,065

    Thanks. Works now. I am just adding a choice to...

    Thanks. Works now. I am just adding a choice to do negative, etc., so I might need more help.
  17. Replies
    18
    Views
    2,044

    Ya, the equation is not exactly accurate. Thanks.

    Ya, the equation is not exactly accurate. Thanks.
  18. Replies
    12
    Views
    1,065

    Didn't help.

    Didn't help.
  19. Replies
    18
    Views
    2,044

    Changing from double to long double did not help.

    Changing from double to long double did not help.
  20. Replies
    12
    Views
    1,065

    Altered counter

    #include <iostream.h>
    #include <stdlib.h>
    #include <conio.h>
    int main()
    {
    int num2;
    cin >> num2;
    {
    for(int num2;num2<9999999;num2++)
    {
  21. Replies
    18
    Views
    2,044

    #include #include ...

    #include <iostream.h>
    #include <stdlib.h>
    #include <string.h>
    #include <conio.h>
    #include <iomanip.h>

    int main()
    {
    int a;
    cout << setprecision(250);
  22. Replies
    18
    Views
    2,044

    Still only 4 digits.

    Still only 4 digits.
  23. Replies
    15
    Views
    3,141

    Programs run in dos. Why not windows?

    Right now my programs run in msdos prompt. How do I make them run in Windows?
  24. Replies
    18
    Views
    2,044

    Same outcome. only 4 digits after .

    Same outcome. only 4 digits after .
  25. Replies
    3
    Views
    983

    I have pi declared because I forgot to get rid of...

    I have pi declared because I forgot to get rid of it while trying to rid it of a bug. I want the program to display infinite digits it PI.
Results 1 to 25 of 32
Page 1 of 2 1 2