Answer:
1
3
5
Step-by-step explanation:
Plug the X value into the given equation
(-2) + 3 = 1
(0) + 3 = 3
(2) + 3 = 5
Answer:
the two graph depicting proportional relationships are the top right and bottom left graphs
hope this helps and btw maybe make ur questions worth more points and dont make titles like this one lol also if its worth like 15 or more points put "__ POINTS"
have a great day!
Answer:
so it would be 5+20
Step-by-step explanation:
You would add 6, so you can divide both sides by 2 later on in the equation. Since it is subtracting six on one side of the equation you need to add on the other side to cancel it out.
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;
}