Διαφάνεια PPT
#include <stdio.h>
#include <math.h>
main()
{
float a, b;
float x, y;
int value_from_scanf;
value_from_scanf = scanf("%f %f", &a, &b);
if ( value_from_scanf !=2 )
{
printf("Error. Expecting two numbers ...\n");
exit(1);
}
for ( x=0.0 ; x < 150.0 ; x += 1.0 )
{
y = a*x + b;
printf(" %f %f\n", x, y);
}
}
Προηγούμενη διαφάνεια
Επόμενη διαφάνεια
Μετάβαση στην πρώτη διαφάνεια
Προβολή έκδοσης γραφικών