fork(1) download
  1. #include <stdio.h>
  2. //関数のプロトタイプ宣言
  3. //ここ↓を埋めてね1
  4.  
  5. int max(int x, int y);
  6.  
  7.  
  8. //main関数
  9. int main(void) {
  10. int a,b,c,d;
  11. //ここ↓を埋めてね2
  12.  
  13. (a<b)?b:a;
  14. (c<d)?d:c;
  15. return 0;
  16. }
  17.  
  18. //max関数の定義
  19. int max(int x, int y){
  20. //ここ↓を埋めてね3
  21.  
  22.  
  23. }
  24.  
  25.  
  26.  
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
Standard output is empty