1480: 从键盘输入一个数,输出该数的绝对值
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:9753
Solved:6857
Description
从键盘输入一个数,输出该数的绝对值。
下面为运行案例
请输入一个整数:-5
绝对值为:5
Input
从键盘输入的一个整数的输入格式要求:
printf("请输入一个整数:\n");scanf("%d", &a);
Output
输出该数的绝对值的格式要求:
printf("绝对值为:%d\n", a);
Sample Input Copy
-5
Sample Output Copy
请输入一个整数:
绝对值为:5