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

12 行
120 B

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