Answer:
#include <iostream>
using namespace std;
int main()
{
int userInput = 0;
do {
cout << "Enter a number (<100):" << endl;
cin >> userInput;
}
while(userInput >= 100);
cout << "Your number < 100 is: " << userInput << endl;
return 0;
}
Explanation:
Inside the <em>do part</em>, ask user to enter a number and get that number.
In the <em>while</em>, check if the number is greater than or equal to 100. It is going to keep asking to enter a number until a number that is smaller than 100 is entered.
Print out the number that is smaller than 100.
Answer: traceroute
Explanation: Hope this helps <3
Answer:1 3 and 5 is Columns and 2 4 and 6 is Rows theres your answer.
Explanation: its self explanatory.
The preview pane. On the right hand side of the file explorer.
If it’s computer files, that would be System Software and Application software.
“The System Software is the programs that allow the computer to function and access the functionality of the hardware. Systems software sole function is the control of the operation of the computer.
Applications software is the term used for programs that enable the user to achieve specific tasks such as create a document, use a database or produce a spreadsheet.”