SUM.CPP
上传用户:wszmarenbt
上传日期:2013-04-26
资源大小:2552k
文件大小:0k
源码类别:

Windows编程

开发平台:

Visual C++

  1. #include <stdio.h>
  2. #include <conio.h>
  3. inline int GETSUM(int NUM1,int NUM2)
  4. {
  5. int SUM;
  6. SUM=NUM1+NUM2;
  7. return SUM;
  8. }
  9. int main(void)
  10. {
  11. int NUMBER1,NUMBER2,SUM;
  12. printf("nPlease input three integer  : ");
  13. scanf("%d",&NUMBER1);
  14. printf("nPlease input another integer:");
  15. scanf("%d",&NUMBER2);
  16. SUM=GETSUM(NUMBER1,NUMBER2);
  17. printf("nThe SUM integer is %d .",SUM);
  18. getch();
  19. return 0;
  20. }