Computers and Technology

How do I solve this? // LargeSmall. cpp - This program calculates the largest and smallest of three integer values.

#include
using namespace std;
int main()
{
// This is the work done in the housekeeping() function
// Declare and initialize variables here
int largest; // Largest of the three values
int smallest; // Smallest of the three values

// Prompt the user to enter 3 integer values

// Write assignment, add conditional statements here as appropriate

// This is the work done in the endOfJob() function
// Output largest and smallest number.
cout << "The largest value is " << largest << endl;
cout << "The smallest value is " << smallest << endl;
return 0;
}

answer
Answers: 3

Other questions on the subject: Computers and Technology

image
Computers and Technology, 22.06.2019 12:10, drelisech6467
Linux is distributed under gnu gpl. why is this important? a. it ensures that only torvalds can profit from the sale of linux b. it prevents unknowledgeable users from downloading programs they don't know how to operate. c. it provides protection for the developers who created linux. d. it states that anyone can copy, modify, and share the program if changes are made public.
Answers: 1
image
Computers and Technology, 23.06.2019 07:00, schvox
1. you have a small business that is divided into 3 departments: accounting, sales, and administration. these departments have the following number of devices (computers, printers, etc.): accounting-31, sales-28, and administration-13. using a class c private network, subnet the network so that each department will have their own subnet. you must show/explain how you arrived at your conclusion and also show the following: all available device addresses for each department, the broadcast address for each department, and the network address for each department. also, determine how many "wasted" (not usable) addresses resulted from your subnetting (enumerate them).
Answers: 3
image
Computers and Technology, 24.06.2019 11:20, brittanybyers122
Print "censored" if userinput contains the word "darn", else print userinput. end with newline. ex: if userinput is "that darn cat.", then output is: censoredex: if userinput is "dang, that was scary! ", then output is: dang, that was scary! note: if the submitted code has an out-of-range access, the system will stop running the code after a few seconds, and report "program end never reached." the system doesn't print the test case that caused the reported message.#include #include using namespace std; int main() {string userinput; getline(cin, userinput); int ispresent = userinput. find("darn"); if (ispresent > 0){cout < < "censored" < < endl; /* your solution goes here */return 0; }
Answers: 3
image
Computers and Technology, 24.06.2019 11:20, tiffanibell71
Colby works as a shipping clerk for a major package delivery service. some of his daily tasks include tracking shipments and entering orders. which aspect of the information technology cluster would he most likely be trained in? a. networkingb. databasesc. hardwared. software
Answers: 2
Do you know the correct answer?
How do I solve this? // LargeSmall. cpp - This program calculates the largest and smallest of three...

Questions in other subjects:

Konu
Mathematics, 07.05.2020 03:03
Konu
Mathematics, 07.05.2020 03:03
Konu
Chemistry, 07.05.2020 03:03
Konu
Mathematics, 07.05.2020 03:03