- 1
Remember, there are 24 hours in a day, 60 minutes in an hour, and 60 seconds in a minute. Use the print() statement to output
How to do this can you please tell me
7 Respuestas
+ 5
Just
print (24*60*60)
gujjala sai krishna U r Welcome
+ 2
Seconds in day?
Easy
Day = 24H
H = 60M
M = 60S
So
1Day = 24 * 60 * 60 Seconds
Code:
Input the days
Days = int(input())
print(Days * 24 * 60 * 60)
+ 1
Thank you sooo much santhosh
0
print(30*24*60*60)
0
You need to find how many minutes there are in a day. A day has 24 hours, each hour has 60 minutes. These values are stored in variables.
Fill in the blanks to calculate and output the required value.
int hours = 24;
int minutes = 60;
int
result = hours
Type
minutes;
System.out.println(
Type
);
0
minutes_in_hour = 60
hours_in_day = 24
minutes_in_day = minutes_in_hour*hours_in_day
print(minutes_in_day)
0
Remember, there are 24 hours in a day, 60 minutes in an hour, and 60 seconds in a minute.
console.log(30*24*60*60)