25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
104 B

  1. #include "chu.h"
  2. int chu(int a, int b)
  3. {
  4. if (0 != b)
  5. {
  6. return a / b;
  7. }
  8. else
  9. {
  10. return 0;
  11. }
  12. }