Description
从键盘上输入任意一个整数,然后输出它的绝对值!
Input
从键盘上输入任意一个整数。
Output
输出它的绝对值。
Sample
Input
-4
Output
4
#include <stdio.h>
#include <math.h>
int main()
{
int x;
scanf("%d",&x);
printf("%d",abs(x));
}
© 版权声明
吾爱博客|AYFRE.COM 版权所有,转载请标明出处。
THE END
请登录后查看评论内容