
Concept explainers
Rewrite the following C program using if-else statements.
#include<stdio.h> int main(void){ int score; printf("Please enter a score (between 100 and 0)> "); scanf("%d" , &score); score = score - (score%10) ; switch(score){ case 100: printf("Extraordinary\n"); break; case 90: case 80: printf("Excellent\n"); break; case 70: case 60: case 50: printf("Not bad\n"); break; case 40: case 30: case 20: case 10: case 0: printf("Weak\n"); break; default: printf("Invalid input!\n"); } printf("< Your name >\n"); printf("< Your ID >\n"); return 0; } |

Step by stepSolved in 2 steps with 1 images

- // SumAndProduct.cpp - This program computes sums and products // Input: Interactive// Output: Computed sum and product #include <iostream>#include <string>void sums(int);void products(int);using namespace std; int main() { int number; cout << "Enter a positive integer or 0 to quit: "; cin >> number; while(number != 0) { // Call sums function here // Call products function here cout << "Enter a positive integer or 0 to quit: "; cin >> number; } return 0;} // End of main function// Write sums function here// Write products function herearrow_forwardC++ Programarrow_forwardCorrect the following if statement below.#include <stdio.h>int main(void){int volt_1=12;if(volt_1 < 10);{printf("This prints inside the if function \n");}printf("This prints outside the if function \n");}arrow_forward
- 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





