
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
Concept explainers
Question
I need to follow the example as shown, Is this missing printf "please enter the ending integer"
Please use this code t follow the assignment and make changes if needed.
#include <stdio.h>
//Define a function that calculates the sum using for loop
int sumFor(int num) {
int sum = 0;
int end = num *2
// Loop through each integer from num to end, adding each value to sum
for(int i = num; i <= end; i++) {
sum += 1;
}
// Return the final sum
return sum;
}
// Define a function that calculates the sum using while loop
int sumWhile(int num) {
int sum = 0;
int end = num * 2;
int i = num;
// Loop through each integer from num to end adding each value to sum
while(i <= end) {
sum += i;
i++;
}
// return the sum
return sum;
}
// Define the main function
int main() {
int daNumba;
// Print welcome message
printf("Welcome to sumTimes2\n\n");
// Print a description of the program
printf("This program will display the prime integers that are in the range between the two integers you enter.");
// Ask the user to enter an integer
printf("Please enter the beginning integer: ");
scanf("%d", &daNumba);
printf("\n");
// If the entered integer is positive, calculate the sum using the given number
if(daNumba > 0){
// Call the sumFor function and print the result
printf("For say the sum is %d\n", sumFor(daNumba));
// Call the sumWhile function and print the result
printf("while says the sum is %d\n", sumWhile(daNumba));
}
// If the entered integer is negative, calculate he sum using the negatice number multiplied by 2
else {
// Call the sumFor function with the negative number multiplied by 2, and print the result
printf("For says the sum is %d\n\n",sumFor(daNumba*));
// Call the sumWhile function with the negative number multiplied by 2, and print the results
printf("While says the num is %d\n\n",sumWhile(daNumba*2));
}
// Print goodbye message
printf("\nThank you for using sumTimes2. Bye!\n");
return 0;
}

Transcribed Image Text:CIS158 Programming Assignment - POS
Prime Numbers
Example of Output (user input is in blue)
Welcome to prime Num.
This program will display the prime integers that are in the range
between the two integers you enter.
Please enter the beginning integer: 3
Please enter the ending integer: 15
The prime numbers from 3 to 15 are:
3
5
7
11
13
Thank you for using primeNum. Bye!

Transcribed Image Text:Program Name
CIS158 Programming Assignment - POS
Prime Numbers
primeNum
Description
The program will indicate which numbers between the values given by the user are prime.
Requirements
Create the e program primeNum.e in the p05 directory. Using the format and words displayed
in the Example of Output, the program will do the following:
•
Display a the welcome message followed by a blank line
.
• Displays a message that indicates what the program will do followed by a blank line.
•
Asks the user to enter two values that will indicate the range of the search for prime
numbers. See "example output" for the exact wording.
.
• Display the heading "Prime numbers from begin to end are:" Note that begin and
end are the numbers entered by the user.
•
The program will call the function that you will create called primeNum to find out if
the number sent was prime or not. The function primeNum will receive an integer and
if it is prime it will retum 1 and if it is not it will return 0.
.
• If the number is prime, the program will display the number. If it is not prime it will
display nothing.
• A blank line.
.
Ends with a thank you message.
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
- Hello! I am having trouble writing this code! It is in Python! Any help is appreciated! program7_1.pyFollow instructions carefully to avoid point deductions. The text file is not required. It will be created when your program is graded. Write a program that begins by calling a custom function named as you wish. This function must create and return a list of 8 random integers, all in the range from 10-100. use a for loop to display the 8 random integers all on one line separated by a single space. print the highest number in the list. print the lowest number in the list. print the total of all list elements. sort the list in descending order. use another loop to display the sorted numbers in descending order, all on the same line, separated by a single space. This loop should also contain code to count the number of even integers and the number of odd integers. report both counts when the loop above has ended. use slicing syntax to make another list holding the middle 2 elements of…arrow_forwardUse the following code to create a function to find the sum of digits in a number. Your function SumOfDigits should take an integer and return an integer. Call this function from main inside a while loop which keeps taking the input until the number is b/w 1 and 1000. #include <iostream>using namespace std;int main(){int digit,sum=0;int i =3456; /// 3456 % 10 = 6 -----------------------/// 3456/10 = 345//// 345 %10 = 5----------------------------//// 345/10 = 34/// 34%10 = 4---------------------------------/// 34/10 = 3// 3%10 = 3 ----------------------------------/// 3/10 = 0 STOPi=3456;while (i!=0){digit = i %10;cout << digit << " ";sum+=digit;i=i/10;}cout <<"Sum of digits "<<sum;}arrow_forwardPython question please include all steps and screenshot of code. Also please provide a docstring, and comments throughout the code, and test the given examples below. Thanks. Develop function fingerprint() that takes text (as a string) as input and creates andreturns the text “fingerprint” obtained as follows: replace each word in the text by itslength (i.e., the number of letters) and concatenate these numbers.>>> fingerprint('This is a secret message')'42167'>>> fingerprint('This message has a different fingerprint')'4731911'>>> fingerprint('Very Short')'45'arrow_forward
arrow_back_ios
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