This is so blurry, can you take another picture or type the questions out please/
Answer:
y = 3x + 3
Step-by-step explanation:
First, you check for the y-intercept, which is 3 for this equation.
In order to find the slope, pick two points and apply the slope formula.
I would just use rise/run. The slope should be 3/1.
Answer:
102.6296
Step-by-step explanation:
It's just the formula (pi)(r^2)
Answer:
D) 12
Step-by-step explanation:
7 + 4 + 1 = 12
Hope that helps!
<em>-scsb17hm</em>
Answer:
Step-by-step explanation:
#include <stdio.h>
int main()
{
int num1, num2, flag_var, i, j;
/* Ask user to input the from/to range
* like 1 to 100, 10 to 1000 etc.
*/
printf("Enter two range(input integer numbers only):");
//Store the range in variables using scanf
scanf("%d %d", &num1, &num2);
//Display prime numbers for input range
printf("Prime numbers from %d and %d are:\n", num1, num2);
for(i=num1+1; i<num2; ++i)
{
flag_var=0;
for(j=2; j<=i/2; ++j)
{
if(i%j==0)
{
flag_var=1;
break;
}
}
if(flag_var==0)
printf("%d\n",i);
}
return 0;
}