fork download
  1. #include <stdio.h>
  2.  
  3. // 関数のプロトタイプ宣言
  4. int max(int x, int y);
  5.  
  6. // main関数
  7. int main(void) {
  8. int a, b, c, d,e;
  9. a=1;
  10. b=3;
  11. c=5;
  12. d=8;
  13. e= max(max(a, b), max(c, d));
  14.  
  15. printf("最大値は %d です。\n",e);
  16.  
  17. return 0;
  18. }
  19.  
  20. // max関数の定義
  21. int max(int x, int y) {
  22. return (x > y) ? x : y;
  23. }
  24.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
最大値は 8 です。