1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
bonufazy [111]
3 years ago
6

• Write a program that asks the user to enter a number of seconds. • If there are less than 60 seconds input, then the program s

hould display the number of seconds that was input. • There are 60 seconds in a minute. If the number of seconds entered by the user is greater than or equal to 60, the program should display the number of minutes in that many seconds (note that ther

Computers and Technology
2 answers:
damaskus [11]3 years ago
8 0

Answer:

Here is the program in C++. Let me know if you want this program in some other programming language.

#include <iostream> //for input output functions

using namespace std;//to detect objects like cin cout

int main()//start of main() function body

{  int seconds; // stores the value of seconds

   int time;    // stores value to compute minutes hours and days

   cout << "Enter a number of seconds: ";

//prompts user to enter number of seconds

   cin >> seconds; // reads the value of seconds input by user

   if (seconds <= 59) //if the value of seconds is less than or equal to 59

   { cout << seconds<<" seconds\n";    } //displays seconds

   else if (seconds >= 60 && seconds < 3600)

//if value of seconds is greater than or equal to 60 and less than 3600

   {  time = seconds / 60; //computes minutes

       cout << time << " minutes in "<<seconds<<" seconds \n ";    }

//displays time in minutes

   else if (seconds >= 3600 && seconds < 86400)    {

//if input value of secs is greater than or equal to 3600 and less than 85400

       time = seconds / 3600; //calculate hours in input seconds

       cout << time << " hours in "<<seconds<<" seconds \n";   }

//displays the time in hours

   else if (seconds >= 86400)    { //if seconds is greater or equal to 86400

       time = seconds / 86400; //compute the days

       cout << time << " days in  "<<seconds<<" seconds \n";   } }

//displays the number of days in input number of seconds

Explanation:

This program first prompts the user to enter the time in seconds and computes the number of minutes, hour or days according to the conditions specified in the program. If the value of seconds entered by the user is less than or equal to 59, the number of seconds are displayed as output, otherwise the if and else if conditions are checked if the input value of seconds is greater than 60 to compute the corresponding minutes, hours or days. Everything is explained within the comments in the program.You can change the data type of time variable from int to float to get the value floating point numbers. Here i am using int to round the time values. The screenshot of the output is attached.

serious [3.7K]3 years ago
6 0

Answer:

The solution code is written in Python:

  1. sec = int(input("Enter number of seconds: "))
  2. if(sec >=60):
  3.    min = sec // 60
  4.    sec = sec % 60
  5. else:
  6.    min = 0
  7. print(str(min) + " minutes " + str(sec) + " seconds")

Explanation:

Firstly, use input function to prompt user to enter number of seconds and assign the input value to variable sec (Line 1).

Next, create an if statement to check if the sec is bigger or equal to 60 (Line 3). If so, we user // operator to get minutes and use % operator to get the seconds (Line 4 - 5).

Then we use print function to print the minutes and seconds (Line 9).

You might be interested in
Inattentional blindness occurs when individuals do not observe certain objects or events because they are focused on something e
PSYCHO15rus [73]
The answer is True have a good day
5 0
3 years ago
Read 2 more answers
You need to perform maintenance on a router and need to temporarily reroute traffic through another office. which would be the b
Whitepunk [10]
<span>In order to perform maintenance on a router and need to temporarily reroute traffic through another office  the best way to perform this action would be to configure a static route on the router.
</span>By doing this, the router will use the manually-<span>configured routing entry to send the packets.</span>
3 0
3 years ago
The first step when entering data is _
34kurt

Answer:

click on the cell

Explanation:

This is a little tricky. We need to first think of the column, then of row, and then click on the corresponding cell. And then we either start typing or move our mouse to highlight the cells. Hence, the correct option here is click on the cell.

3 0
2 years ago
*asap* Name one of the similarities between Word and Excel.
Yakvenalex [24]
The similarities are:  in both programs you can type letters, insert images, hyperlinks.
7 0
3 years ago
What keyboard command opens the Go To dialog box?
Harlamova29_29 [7]

If you mean the search for a phrase or word function on a page,

Left Ctrl + F

7 0
3 years ago
Read 2 more answers
Other questions:
  • . When you have multiple graphics positioned on a page, you can _______________ them so that they are a single graphic instead o
    9·1 answer
  • Tara referred to various information sources while writing her research paper. How can she acknowledge these sources in her docu
    8·1 answer
  • Write a method called printRange that accepts two integers as arguments and prints the sequence of numbers between the two argum
    6·1 answer
  • darren wants to substitute every occurence of the word bulky in his spreadsheet with the word strong. which of these options sho
    9·2 answers
  • Grandma Ester normally gives you hugs for your birthday - one for every year old you are. When you turned 15, she squished you w
    8·1 answer
  • Problem: Mr. James Reid, the director of admissions at MOGCHS University, has
    14·1 answer
  • What is a key differentiator for Accenture when delivering Artificial Intelligence (AI) solutions to clients?
    11·1 answer
  • You defined a class and saved it as shoe.py.
    5·2 answers
  • An analog video is a video signal transmitted by an analog signal, captured on a (blank)
    13·1 answer
  • Which of the following recommendations should you follow when placing access points to provide wireless access for users within
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!