fork download
  1. #include <stdio.h>
  2. //練習問題A
  3. int func(int n){
  4. if(n<0){
  5. return -n;
  6. }else{
  7. return n;
  8. }
  9. }
  10.  
  11.  
  12.  
  13. int main(void) {
  14. int n, m = -3;
  15. n = func(m);
  16. printf("%dの絶対値は%d\n", m,n);
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
-3の絶対値は3