Computer Science, asked by vidyavilasini6072, 19 days ago

write a program that calculates how many seconds there are in a week, if a week is 7 days

Answers

Answered by freexe
0

Answer:

a c++ program

Explanation:

int m = 60;

int h = 60*60;

int d = 24*h;

int w = 7*24;

cout<<w;

Similar questions