首页 > 代码库 > C PRIMER PLUS 学习笔记(一)
C PRIMER PLUS 学习笔记(一)
1显示程序执行的窗口一闪即逝。可以添加如下语句:
getchar()
作用是获取键盘输入。
2 inf
和 nan
float toobig = 3.4e38 * 100.0f;
float not_a_number = asin(1.2);//math.h
printf("%e \t %e\n", toobig,not_a_number);
inf-表示无穷大,nan-Not-a-number
3 long double 的输出格式
long double x;
x = 3.2e-5;
printf("x = %f, x = %e\n", x, x);
printf("x = %lf, x = %le\n", x, x);
printf("x = %Lf, x = %Le\n", x, x);
long double 应采用%Lf(%lf)
或者%Le(%le)
或者%La(%la)
%a指十六进制指数格式输出。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。