您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

17 行
162 B

  1. #include "stdio.h"
  2. int add(int a,int b)
  3. {
  4. return a + b;
  5. }
  6. int sub(int a,int b)
  7. {
  8. return a-b;
  9. }
  10. int main()
  11. {
  12. printf("hello world!");
  13. return 0;
  14. }