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;
}
I can not explain how he perceives or views that, but here is my shot at it.
"without a struggle, there is no progress"
What in life goes without an obstacle? can you cross the street without looking both ways, yes but you'll most likely be hit by a car. See without taking that extra second you'll not make the progress you'll just keep backpedaling or you end up dead if you follow the example ha!
(In conclusion)
There is little chance without putting in work that you'll actually succeed. <span />
Answer:
Analogy
Explanation:
An analogy is a comparison of two unlike things based on the resemblance of their particular aspect. Its purpose is usually to explain or clarify something.
Here, Juliet uses an analogy to compare a rose and Romeo. A rose and Romeo don't have anything in common - a rose is a flower, and Romeo is Juliet's lover. However, she has found a similarity between them. The smell of a rose is as sweet as Romeo, and that is why she makes this analogy.
Answer:
The relationship between confusion and growth is a positive one since it makes people understand better and learn more.
Explanation: