answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: How do you write an expression for the number of days in w weeks?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you you write an expression for number of days in 4 weeks?

7x4=28 days


What is a number of days in w weeks?

100 7*w = number of days in w weeks.


What number of weeks in 49 days?

There are 7 weeks in 49 days.


Give the number of weeks and days in 25 days?

3 weeks 4 days


What number of weeks in 2.6 days?

There are 7 days in a week, so you take 2.6days divided by 7days and get the number of weeks in 2.6 days which is 0.3714 weeks.


How many days are in 159 weeks?

1,113 days Method; Multiply the number of weeks by the number of days per week. So, 159 x 7 = 1113 days


How many days are in 39 weeks?

To find the number of days in 39 weeks, multiply the number of weeks by 7 days. 39 X 7 = 273 There are 273 days in 39 weeks.


How do you calculate weeks in a month?

Number of weeks = number of days in the month/7 .


How many day are there in 16 weeks?

112 days, this is the calculation: 7(number of days in a week) x 16(number of weeks you want to know) =112 days in 16 weeks!


What is the formula for finding the number of days in any number of weeks?

7 times (number of weeks)


How do you write a ratio to compare these amounts 5 days to 3 weeks?

3 weeks = 3*7 = 21 days. So 5 days to 3 weeks = 5 days to 21 days = 5:21


Write a C plus plus program to convert a given number into years weeks and days?

#include<iostream> void num_to_years_weeks_days( unsigned num, unsigned& years, unsigned& weeks, unsigned& days) { years = num / 365; num -= years * 365; weeks = num / 7; num -= weeks * 7; days = num; } int main() { unsigned years, weeks, days; unsigned num = 1000; num_to_years_weeks_days(num, years, weeks, days); std::cout << num << " days is " << years << " years, " << weeks << " weeks and " << days << " days\n" << std::endl; num = 12345; std::cout << num << " days is " << years << " years, " << weeks << " weeks and " << days << " days\n" << std::endl; }