「C言語」abs関数で絶対値を計算する

サンプルコード
int a= 5;
printf(" %d\n", a, abs(a));

int b = -6;
printf(" %d\n", b, abs(b));

Software

Posted by arkgame