一、填空题 请补充 main 函数,该函数的功能是:从键盘输入一个长整数,如果这个数是负数,则取它的绝对值,并显示出来。例如,输入: -3847652 ,结果为: 3847652 。 #include
main() { long int n; printf("Enter the data;\n"); scanf( ______ ); printf("*** the absolute value***\n"); if(n<0) ______ printf("\n\n"); printf( ______ ); }