M
millepetrozza
Нужно найти и вывести простые числа на отрезке по координатам его концов. Опять ошибка, но на этот раз программа не компилируется, очевидно, потому, что сейчас код уже точно мой :lol:.
Код:
#include "stdafx.h"
#include<stdio.h>
#include <conio.h>
#include <math.h>
int main( )
{int a,b,c,i,d;
printf ("Enter the coordinates of the endpoints\n");
scanf ("%d%d",&a, &b );
{if (a==b)
{printf ("this is dot");} else
{if ((a-b)<0) c=1; else c=(-1);}
for (a; a<=b*c; a=a+c)
{for (i=2; i<b*c;i+=c)
{d=a/i;
if (d*i==a && abs(a)!=2)
{printf("%d\n", a);
}
}
getch();
}