subsection.c
上传用户:bjtelijie
上传日期:2010-01-01
资源大小:87k
文件大小:0k
源码类别:

数学计算

开发平台:

Visual C++

  1. # include <stdio.h>
  2. void main()
  3. {
  4. int x, y;
  5. printf("请输入自变量x:");
  6. scanf("%d", &x);
  7. if(x < 6)
  8. {
  9. y = x - 12;
  10. printf("x = %d, y = %dn", x, y);
  11. }
  12. else if(x < 15)
  13. {
  14. y = 3*x - 1;
  15. printf("x = %d, y = %dn", x, y);
  16. }
  17. else
  18. {
  19. y = 5*x + 9;
  20. printf("x = %d, y = %dn", x, y);
  21. }
  22. }