当前位置: 代码迷 >> C语言 >> [求助]pintf中%lu 连用的问题
  详细解决方案

[求助]pintf中%lu 连用的问题

热度:174   发布时间:2007-10-31 23:18:54.0
LS正解,输出长整型时,最好用长整数,如:21l
----------------解决方案--------------------------------------------------------
我运行了下是21,你可能少了什么吧,我感觉system("pause");得用个头文件吧嘎嘎~~~~~~~也不知道是不是
----------------解决方案--------------------------------------------------------

#include<stdio.h>
int main(void)
{

printf("%lu\n",21); //改成 printf("%lu\n",(long unsigned)21);

system("pause");

}


----------------解决方案--------------------------------------------------------
10楼为正解.谢谢.

----------------解决方案--------------------------------------------------------

我也要说11楼是比较好的方案


----------------解决方案--------------------------------------------------------
  相关解决方案