Search:

Type: Posts; User: lyoncourt

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    7,381

    Xlayer- I tried your suggestion and it appears to...

    Xlayer- I tried your suggestion and it appears to have made matters worse. Doing that destroys my constraint checking loop and the program just keeps accepting numbers regardless and with no end.
    ...
  2. Replies
    6
    Views
    7,381

    a sum equal to or in excess of 100

    #include <stdio.h>
    int main (void)
    {
    int value, sum = 0;

    printf ("Enter a value: ");
    scanf ("%i", &value);

    while ( sum > 100 )
    {
  3. Replies
    8
    Views
    2,859

    I gave you my question and you gave me your...

    I gave you my question and you gave me your answer and I am still trying to understand and figure things out. It's as simple as that.
  4. Replies
    8
    Views
    2,859

    No, I actually did write this code :/ I just...

    No, I actually did write this code :/ I just started learning loops and stuff so I'm still trying to catch on to it.

    Nevermind.
  5. Replies
    8
    Views
    2,859

    I'm sorry MacGyver, you have been so helpful yet...

    I'm sorry MacGyver, you have been so helpful yet I am simply not understanding what to do. I am so new to this.

    Thank you though.
  6. Replies
    8
    Views
    2,859

    I am not exactly sure what or how to do it, hence...

    I am not exactly sure what or how to do it, hence the confusion on my part. Let me try to explain again.

    User will input a value that will indicate how many values they intend to enter later....
  7. Replies
    8
    Views
    2,859

    User determined input question

    Hi, I am writing a program that requires user determined input at the beginning of the program. I must ask the user to input a number that will determine the number of integers that the user will put...
  8. Replies
    3
    Views
    2,253

    Thank you so much! I have learned and I will keep...

    Thank you so much! I have learned and I will keep that in mind in the future. :D
  9. Replies
    3
    Views
    2,253

    Code Question

    Hello, I'm beginning C programming and am having a little problem with this program of mine. The program is to take entered temperatures, which it does correctly, average them, also does correctly,...
Results 1 to 9 of 9