Search:

Type: Posts; User: TripleF2000X

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    903

    I know how to do it on the calculator, and on...

    I know how to do it on the calculator, and on paper, I just can't get the for statement to give me what I want. It's probably a really simple 3-4 line code I'm just dancing around. Help?
  2. Replies
    3
    Views
    903

    PowerOf Function

    /* Title: c5 Review 9 (c05r09) */
    #include <iostream.h>

    // ----------------------------------------

    void Introduction()
    {
    IGNORE THIS PART
    }
  3. thank you so much. and i know what you mean. i'm...

    thank you so much. and i know what you mean. i'm a lil new at this. thanks again for helping me
  4. for the () loop, i know what you mean; i need it...

    for the () loop, i know what you mean; i need it to execute till infinity (technically) until 0 is reached, but i didn't know how to state that in there. and i was confused, i dont know how to name...
  5. #include #include ...

    #include <lvp\random.h>
    #include <iostream.h>

    int main()
    {
    const int Sentinel = 0;

    do
    {
    randomize();
  6. ignore #include

    ignore #include <stdlib.h>
  7. #include #include {...

    #include <stdlib.h>
    #include <lvp\random.h>
    {
    return rand()%limit;
    }

    #include <iostream.h>

    int main()
    {
  8. i can get the random numbers, but i can't get it...

    i can get the random numbers, but i can't get it to stop executing when 0 is reached; i'll get an infinite loop of some sort
  9. anyone offering a little help with random number?

    If anyone would be able to help me, i'd really appreciate it please. for school i have a problem to do that deals with random numbers. i need to write a program that generates a series of random...
  10. Nevermind guys, I was playing around with it and...

    Nevermind guys, I was playing around with it and got it. If anyone else has the same problem, here is my finished code...



    /* Temperature Program */

    #include <iostream.h>

    int main()
    {
  11. Here we go... /* Temperature Program */ ...

    Here we go...



    /* Temperature Program */

    #include <iostream.h>

    int main()
    {
  12. Also, I would need to do this the most basic way...

    Also, I would need to do this the most basic way as possible.
  13. A little help in displaying a high value in a loop

    I've been racking my brain for about 2 hours now, so I decided to ask CProgramming for help. I have a problem I got to do for school and I have basically everything but I can't get one thing.

    The...
Results 1 to 13 of 13