Ask your own question, for FREE!
Mathematics 17 Online
OpenStudy (anonymous):

how ,many weeks are in a year? ;) how ,many weeks are in a year? ;) @Mathematics

OpenStudy (saifoo.khan):

52

OpenStudy (alfie):

365/7 :)

OpenStudy (anonymous):

There are 52.285714285714... weeks in a leap year

OpenStudy (anonymous):

52 weeks, 365 1/4 days

OpenStudy (anonymous):

52 weeks

OpenStudy (anonymous):

365.25 days per year / 7 days per week = 52 weeks.

OpenStudy (anonymous):

#include <stdio.h> #include <stdbool.h> void halve(int *x) { *x >>= 1; } void doublit(int *x) { *x <<= 1; } bool iseven(const int x) { return (x & 1) == 0; } int ethiopian(int plier, int plicand, const bool tutor) { int result=0; if (tutor) printf("ethiopian multiplication of %d by %d\n", plier, plicand); while(plier >= 1) { if ( iseven(plier) ) { if (tutor) printf("%4d %6d struck\n", plier, plicand); } else { if (tutor) printf("%4d %6d kept\n", plier, plicand); result += plicand; } halve(&plier); doublit(&plicand); } return result; } int main() { printf("%d\n", ethiopian(17, 34, true)); return 0; }

OpenStudy (saifoo.khan):

everyone almost copied my answer. :(

OpenStudy (anonymous):

@saifoo.khan.......I am positive I didn't....cause I was asked this question recently.....

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!