write a program that calculates how many seconds there are in a week, if a week is 7 days
Answers
Answered by
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