【简答题】
请补充main函数,该函数的功能是:从键盘输入一个长整数,如果这个数是负数,则取它的绝对值,并显示出来。
例如:输入-12345678,结果为12345678。
注意:部分源程序已给出。
请勿改动函数中的其他任何内容,仅在横线上填入所编写的若干表达式或语句。
试题程序:
#include<stdio.h>
#include<conio.h>
void main()
long int n;
printf("Enter the data:\n");
seanf( (1) );
printf("*****the origial data*****\n");
if(n<0)
(2)
printf("\n\n");
printf( (3) );
参考答案:
参考解析:
举一反三