You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 regels
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. }