Search:

Type: Posts; User: jp5a9852

Search: Search took 0.00 seconds.

  1. Replies
    13
    Views
    1,811

    I don't need to print out the reverse just solve...

    I don't need to print out the reverse just solve by it. Also I haven't seen the % used like this, what exactly is it doing?
  2. Replies
    13
    Views
    1,811

    Most of the questions I ask are like that...

    Most of the questions I ask are like that unfortunately, I'm not finding this in my book though so I don't know where to start. So I must ask.
  3. Replies
    13
    Views
    1,811

    Reversing numbers in c without arrays

    As the title says I need to know how to reverse numbers in c without using the arrays. Why? That is part of my assignment. My professor told me that there is a simpler way to do it but I don't know...
  4. Replies
    12
    Views
    1,482

    My teacher never specified whether it was...

    My teacher never specified whether it was supposed to be float or int, so I'll use int, thanks.

    I've revised my code, this is what I have now. I can see why you were mad at my code earlier, it was...
  5. Replies
    12
    Views
    1,482

    That is correct Matticus.

    That is correct Matticus.
  6. Replies
    12
    Views
    1,482

    I'm just doing it the way I've been taught in...

    I'm just doing it the way I've been taught in class so far, as you can tell, I've not been learning for very long. Thanks for the help anyway, it was so obvious too, I used the single quotes below it...
  7. Replies
    12
    Views
    1,482

    Help with some quick questions.

    What I need to do is make a program that takes a number less than 6 digits that is inputed by the user and then solve according to the op inputed.

    I just need to know how to get the reverse of the...
  8. Okay that helps a little, this is what I got now:...

    Okay that helps a little, this is what I got now:


    #include <stdio.h>
    #include <math.h>




    int main(void)
  9. Need help with a loop to make a multiplication table.

    Problem:
    Write C loop to display the multiplication table as shown below.
    1 2 3 4 5 6 7 8 9
    1 1
    2 2 4
    3 3 6 9
    4 4 8 12 ...
  10. Replies
    4
    Views
    838

    Alright, I think I'm close. This is what I've...

    Alright, I think I'm close. This is what I've done over the past two hours.



    #include <stdio.h>
    #include <ctype.h>
    //Function Prototype
    void title();
    float userBal();
    char userMenu();
  11. Replies
    4
    Views
    838

    Need lots of help with functions.

    This is a long read, I know, but I've been trying things for several hours. If you read all this and take the time to help me your a saint.

    I'm trying to put everything in this program into...
  12. Replies
    10
    Views
    4,777

    I got it, thanks for your help, sorry I drew it...

    I got it, thanks for your help, sorry I drew it out so long. It's much appreciated.
  13. Replies
    10
    Views
    4,777

    When i and j are 7 (I turned i and j to = 0 as...

    When i and j are 7 (I turned i and j to = 0 as you suggested earlier)it stops printing and comes out of the loop, is that what you mean?
  14. Replies
    10
    Views
    4,777

    Yes, but we went over them quickly in class and I...

    Yes, but we went over them quickly in class and I don't see how they apply here.

    To break out do I use a "break", "continue", or something like that? I was just looking at those in my book and I...
  15. Replies
    10
    Views
    4,777

    I'm starting to understand, I spent the last 20...

    I'm starting to understand, I spent the last 20 minutes trying things. So I need to break out of that loop, make another one that prints ** twice, without calling the * again? How do I go about this?
  16. Replies
    10
    Views
    4,777

    n = 6, not n = 5, sorry.

    n = 6, not n = 5, sorry.
  17. Replies
    10
    Views
    4,777

    Help asterisks tree code.

    5. Write a short program to display the following tree using only one '*' character as input. (Hint use for statements.)


    *
    **
    ***
    ****
    *****
    ******
    **
Results 1 to 17 of 17