📜  绝对值 - 无论代码示例

📅  最后修改于: 2022-03-11 14:54:58.446000             🧑  作者: Mango

代码示例1
#include 
#include 
int main()
{
   int m = abs(200);     // m is assigned to 200
   int n = abs(-400);    // n is assigned to -400
 
   printf("Absolute value of m = %d\n", m);
   printf("Absolute value of n = %d \n",n);
   return 0;
}