Question

Please help, thank you so much! Write in C code: 1) keep on entering numbers until...

Please help, thank you so much!

Write in C code:

1) keep on entering numbers until user enters 0;

2) print the maximum of the numbers entered;

0 0
Add a comment Improve this question Transcribed image text
Answer #1

CODE

#include <stdio.h>

#include <limits.h>

int main(void) {

int maximum = INT_MIN;

int num;

while (num != 0) {

printf("Enter a number (0 to exit): ");

scanf("%d", &num);

if (maximum < num) {

maximum = num;

}

}

printf("The maximum number is: %d", maximum);

return 0;

}

Add a comment
Know the answer?
Add Answer to:
Please help, thank you so much! Write in C code: 1) keep on entering numbers until...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Please code in C thank you. 1. Create an array with 20 random numbers between 1...

    Please code in C thank you. 1. Create an array with 20 random numbers between 1 and 100. Incorporate the following specifications. • Send the base address of the array and an integer to a function called sort(). • The integer is a user input which is either 0 or 1. If the user does not enter either 0 or 1, keeping asking the user until you get the right input. • If the user input is 0, sort the...

  • (java) Write a While loop that prompts the user for only even numbers. Keep prompting the...

    (java) Write a While loop that prompts the user for only even numbers. Keep prompting the user to enter even numbers until the user enters an odd number. After the loop ends, print the sum of the numbers. Do not include that last odd number. You should not store the numbers in an array, just keep track of the sum. Make sure to use a break statement in your code. You may assume that a java.util.Scanner object named input has...

  • 5.2 Write a program that repeatedly prompts a user for integer numbers until the user enters...

    5.2 Write a program that repeatedly prompts a user for integer numbers until the user enters 'done'. Once 'done' is entered, print out the largest and smallest of the numbers. If the user enters anything other than a valid number catch it with a try/except and put out an appropriate message and ignore the number. Enter 7, 2, bob, 10, and 4 and match the output below. ​ 1 largest = None 2 smallest = None 3 while True: 4...

  • 5.2 Write a program that repeatedly prompts a user for integer numbers until the user enters...

    5.2 Write a program that repeatedly prompts a user for integer numbers until the user enters 'done'. Once 'done' is entered, print out the largest and smallest of the numbers. If the user enters anything other than a valid number catch it with a try/except and put out an appropriate message and ignore the number. Enter 7, 2, bob, 10, and 4 and match the output below. 1 largest = None 2 smallest = None 3 while True: 4 num...

  • Write a SIMPLE JAVA program to store a positive number a user inputs until he enters 0. Print all the numbers entered at...

    Write a SIMPLE JAVA program to store a positive number a user inputs until he enters 0. Print all the numbers entered at the end. The dialog might look like: Enter Number: 1 Enter Number: 10 Enter Number: 0 You entered numbers 1, 10

  • Write a script which asks the user to input numbers until the user inputs 0. Then...

    Write a script which asks the user to input numbers until the user inputs 0. Then the script should print only the positive numbers entered by the user, in reverse order E.G. if the user inputs '4, -1, 5, 2, -3, -8, 0', the script should print '2, 5, 4'. Please don't copy someone else's answer as they don't work.

  • I need a solution of this qouestion until tomorrow. Please help me. Thank you so much...

    I need a solution of this qouestion until tomorrow. Please help me. Thank you so much 6. Consider the electrical circuits shown in Fig C/2 C/2 2R OR in out (a) Find the dynamic equations and state variables (b) Determine the transfer function.

  • Write a java program that keeps asking the user to enter a number until the user...

    Write a java program that keeps asking the user to enter a number until the user quits and prints how many even and how many odd numbers entered by the user. The loop terminates if the user enters -1 (it indicates that there will be no more number entering by the user). In other words, as long as the user doesn’t enter -1, the loop will be executed. Please add comments to the program to understand/ explain the code.

  • Please write the code in assembly language which can run in HLA. Thank you very much!!...

    Please write the code in assembly language which can run in HLA. Thank you very much!! -So we need to write the code in assembly language in Notepad++, end with .hla and run it in CMD. - This project is about writing a program to read numbers, counts the items read, calculates the total, the maximum and minimum of the numbers. -The program stops when a 0 is entered. Zero will not be part of the data. -work with integers,...

  • Please show me the MATLAB CODE for this problem Thank you Write programs that determine solutions...

    Please show me the MATLAB CODE for this problem Thank you Write programs that determine solutions for polynomials (quadratics, et al) a) Create a program that presumes the user-entered values (a,b,c) represent a valid quadratic equation and your initial program simply solves the equation and reports the real or imaginary roots. b) Create a flowchart that describes all possible combinations of user entered data, e.g. perhaps a user enters (1, 0, -4) as (a, b, c) which is of course...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT