These do: 1, 2, 4, 8.
In fact, 1 is the only whole number that evenly goes into both numbers.Answer 1' 1 ' does.
400
It does, but not evenly. 27 goes into 400 14 times, plus a little more. 400/27 = 14.814814... Or you could say it goes 14 times with a remainder of 22
400, 800, 1200, 1600, 2000, 2400 +400 . . .
The number 1, 5, and 25 (also known as the common factors of 25 and 400) go into 25 and 400
5
361 squares evenly to 19.
No. 400 is not evenly divisible by nine.
No - 1900/400 = 4.75
no, 9 does not go into 400 evenly
First, you can rule out a year being a leap year if it is an odd number, like 2013. If the year is even, is it evenly divisible by 4? If it's not evenly divisible by 4, it's not a leap year. Example: 2010 If it is evenly divisible by 4, is it evenly divisible by 100? If it's not evenly divisible by 100, it is a leap year. Example: 2012 If it is evenly divisible by 100, is it evenly divisible by 400? If it's not evenly divisible by 400, it's not a leap year. Example: 2100 If it is evenly divisible by 400, it is a leap year. Example: 2000
== == 255 --- The logic for determining whether or not a year is a leap year, when you're looping through a span of years is this: i%4==0 && i%100!=0)i%400==0 In plain English: 1) if the number is evenly divisble by 4 and NOT evenly divisible by 100 -or- 2) the number is evenly divisible by 400 Then it's a leap year.