Write a C program which calculates and prints the number of whole days and hours in a given number of hours.   There are 24 hours in a day. You will need to use the integer division operator / to calculate the number of whole days and the modulus (remainder) operator % to calculate the number of remaining hours. The output of your program should have the following format.   130 hours is equivalent to 5 days and 10 hours. Please do not change the provided code.   For example: Test: number_of_hours = 130 Input: 130 Output: 130 hours is equivalent to 5 days and 10 hours. Provided code:   #include   int main() { int number_of_hours; scanf("%d", &number_of_hours);    //type your code here    return 0; }

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter4: Selection Structures
Section4.3: Nested If Statements
Problem 7E
icon
Related questions
Question

Write a C program which calculates and prints the number of whole days and hours in a given number of hours.  

There are 24 hours in a day. You will need to use the integer division operator / to calculate the number of whole days and the modulus (remainder) operator % to calculate the number of remaining hours. The output of your program should have the following format.

 

130 hours is equivalent to 5 days and 10 hours.

Please do not change the provided code.

 

For example:

Test: number_of_hours = 130

Input: 130

Output: 130 hours is equivalent to 5 days and 10 hours.

Provided code:

 

#include <stdio.h>

 

int main()

{

int number_of_hours;

scanf("%d", &number_of_hours);

  

//type your code here

  

return 0;

}

Expert Solution
steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Datatypes
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
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,