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;
}
Answer:
king con of course ahhahaha
Answer:
The Americans
Explanation / Resources:
"The United States received the disputed Texan territory, as well as New Mexico territory and California. The Mexican government was paid $15 million — the same sum issued to France for the Louisiana Territory. The United States Army won a grand victory." (www.ushistory.org)
"The Mexican-American War was a conflict between the United States and Mexico, fought from April 1846 to February 1848. Won by the Americans" (www.britannica.com)
Answer:
Compare: Estimate, measure, or note the similarity or dissimilarity between.
Contrast: Compare in such a way as to emphasize differences.
Therefore, to contrast is to compare. They mean the same thing. So, just write the differences and similarities between the two texts and you should be fine. It doesn;t matter what subject or topic it is, just stick to the guidelines..
Explanation:
thats what you asked right?
The principal is only talking about Amy while Ms Gaskell is talking about all the students so hers is more formal while the principals is more personal