Explanation:
as Earth rotates, the moon's gravity causes the oceans to seem to rise and fall .( then also, but not as much). there is a little bite of friction between the points and the turning Earth causing the rotation to slow down just a little.
if the earth stopped spinning suddenly, the atmosphere Would Still Be in motion with the earth original 1100 Mile per hour rotation speed at the equator.
Answer:
A) the main idea is what the paragraph is about
Explanation:
from the words main idea you can guess it can't be b or c because that doesn't make sense. its not d as well that's a different topic. so your answer is a which explains it the best. hope it helps you
if i had a chance to change the past i would because iv made a lot of mistakes in my life and if i could fix them it would make the man i am now a lot better and i could make my family proud and i could start over and thats what a lot of people want and thats a second chance .
Answer:
1) its because we managed to divide the answer so it is not a prime number.
2)
Code:
#include <stdio.h>
int main()
{
int i, j, n, isPrime; // isPrime is used as flag variable
/* Input upper limit to print prime */
printf("Enter your n : ");
scanf("%d", &n);
printf("Prime numbers from 1 to %d:\n", n);
/* Find all Prime numbers between 1 to n */
for(i=2; i<=n; i++)
{
/* Assume that the current number is Prime */
isPrime = 1;
/* Check if the current number i is prime or not */
for(j=2; j<=i/2; j++)
{
/*
* If i is divisible by any number other than 1 and self
* then it is not prime number
*/
if(i%j==0)
{
isPrime = 0;
break;
}
}
/* If the number is prime then print */
if(isPrime==1)
{
printf("%d,\n ", i);
}
}
return 0;
}