
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Question
thumb_up100%
Write a C++ program to read 10 integers in the array and print the number of values>0 in it.
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 3 steps with 1 images

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- Implement this C program using at least three arrays to store the interest, principle and balance for each payment respectively. For example, interest[0] stores the paid interest in the first payment. Name this C program as loanCalcArr.c .arrow_forwardTake 10 integer inputs from user and store them in an array. Again ask user to give a number. Now, tell user whether that number is present in array or not. Solve the problem in c++ Copy paste the code and paste the screenshot of output by running the program on compilerarrow_forwardFor this project the program should be made in C++ Write a menu driven program that reads an array of 10 integer from standard keyboard (user) utilizing a loop and outputs the following depending on user's choice Choice 1 - Prints the elements of array Choice 2 - Prints the minimum value of the array Choice 3 - Prints the maximum value of the array Choice 4 - Prints the product of all the numbers utilizing a loop. Choice 5 - Prints the sum of all the numbers utilizing a loop Choice 6- Print the elements of array in a reverse order When the program is done, your program should ask the user if they would like to enter another set of 10 numbers and the program should repeat itself. Input validation: Your program should only accepts integers.arrow_forward
- you will write a c++ program to input 5 elements (of type int) from the user and store them in an array. Your program should then reverse the array and display it. For instance, if the user enters 1 2 3 4 5 as the five elements of the array, your program should reverse it and display: 5 4 3 2 1 Note: You must use a for loop to process the array.arrow_forwardyou will develop a c++ program to find all the duplicate elements in a character array. Your program should ask the user to input 7 elements (of type char) and display all the duplicates. For instance, if the user enters d a b g a c b, your program should display: a barrow_forwardWrite a program in C++ that repeatedly prompts the user to enter a capital for a state. Upon receiving the user input, the program reports whether the answer is correct. A sample run is shown below: What is the capital of Alabama? Montgomery [ENTER]Your answer is correct.What is the capital of Alaska? Anchorage [ENTER]The capital of Alaska is Juneau Assume that fifty states and their capitals are stored in a two-dimensional array, see below. The program prompts the user to enter ten states’ capitals and displays the total correct count.arrow_forward
- Write a C++ program that helps the user plan out their budget. It should ask the user for the most recent 5 things that they bought; it should ask for both the name for the item and its price. Then, print out the following: total money spent, average money spent per item, lowest priced item, and highest priced item. You can assume that each item has a different name and a different price. You must use at least 1 array and you must display all numbers as dollar values (exactly 2 places after the decimal) EXPECTED OUTPUT Welcome to the Budget Helper. What are the last 5 things you bought? Item 1 name: Bananas Item 1 price: 1.5 Item 2 name: Shoes Item 2 price: 45 Item 3 name: Coffee Item 3 price: 2.5 Item 4 name: Metrocard Item 4 price: 120 Item 5 name: Jacket Item 5 price: 89 The total amount you spent is $258The average price per item is $51.60The cheapest item is BananasThe most expensive item is Jacketarrow_forwardWrite a function which will find the average of all elements of an array of integers. Pass an array anda dimension (the number of elements), and return the value of the average as a float ( the return value).Test this function in the main program with the array: 5, 7, 3, 5, 6, 4. c++arrow_forwardWrite a C++ code segment (NOT AN ENTIRE PROGRAM) that does the following: lue ray 1. Declare an array that can hold 900 elements of type double se e a 2. Prompt the user for one double 3. Assign values to the array so that the first 450 elements are set to the value of the user's input and the last 450 elements are set to three times the value of the user's input.arrow_forward
- in C++ pleasearrow_forwardNames of all numbers are in lowercase. Use substr(), i.e. create a single string of all names and do not use an array. In C++.arrow_forwardGiven an array of size N-1 such that it only contains distinct integers in the range of 1 to N. Find the missing element. Example 1: Input:N = 5A[] = {1,2,3,5}Output: 4 Write the code for this problem in C++ and Python3arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education