输入一个整数,编程求其绝对值(不能使用库函数)

2024-11-23 11:17:45
推荐回答(2个)
回答1:

#include
void main()
{
int x;

printf("please input x: ");

scanf("%d",&x);

if(x<0) x=-x;

printf("|x|=%d",x);

}

希望满意!!!望采纳!!!如果觉得好,望赞同!!!

回答2:

函数abs()可求绝对值,采用模板还可以通用,如下
int abs(int n){
return n<0?-n:n;
}