Prime Numbers xample 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!
Prime Numbers xample 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!
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
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;
}
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 now
This is a popular solution!
Step by step
Solved 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
Recommended textbooks for you
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
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