fork download
  1. #include <stdio.h>
  2. int main ()
  3. {
  4. /* variable definition: */
  5. int m,x,b,y;
  6.  
  7. /* Initialize slope of line */
  8. y = 0;
  9. printf("Enter an Integer for m\n");
  10. scanf("%d", &m);
  11. printf("Enter an Integer for x\n");
  12. scanf("%d", &x);
  13. printf("Enter an Integer for b\n");
  14. scanf("%d", &b);
  15. y = m * x + b;
  16. printf("y is %d\n " , y );
  17. if (y >10)
  18. printf("y is greater than 10\n");
  19. return 0;
  20. }
Success #stdin #stdout 0s 9424KB
stdin
20
1
4
stdout
Enter an Integer for m
Enter an Integer for x
Enter an Integer for b
y is 24
 y is greater than 10