- 1、本文档共6页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C语言 实验三C语 实验三
1221410042 张锦华
18.3 最简单的C程序设计
-----实验报告
(1)①源程序
#includestdio.h
void main()
{int a,b;
float d,e;
char c1,c2;
double f,g;
long m,n;
unsigned int p,q;
a=61;b=62;
c1=a;c2=b;
d=3.56;e=-6.87;
f=3157.890121;g=0.123456789;
m=50000;n=-60000;
p=32768;q=40000;
printf(a=%d,b=%d\nc1=%c,c2=%c\nd=%6.2f,e=%6.2f\n,a,b,c1,c2,d,e);
printf(f=%15.6f,g=%15.12f\nm=%ld,n=%ld\np=%u,q=%u\n,f,g,m,n,p,q);
}
编译结果:
--------------------Configuration: 18.31 - Win32 Debug--------------------
Compiling...
18.31.c
C:\Documents and Settings\Administrator\物理学院张锦华C语言\18.31.c(11) : warning C4305: = : truncation from const double to float
C:\Documents and Settings\Administrator\物理学院张锦华C语言\18.31.c(11) : warning C4305: = : truncation from const double to float
18.31.obj - 0 error(s), 0 warning(s)
②运行结果:
③修改后源程序
#includestdio.h
void main()
{int a,b;
float d,e;
char c1,c2;
double f,g;
long m,n;
unsigned int p,q;
a=61;b=62;
c1=a;c2=b;
d=3.56;e=-6.87;
f=3157.890121;g=0.123456789;
d=f;e=g;
p=a=m=50000;q=b=n=-60000;
printf(a=%d,b=%d\nc1=%c,c2=%c\nd=%6.2f,e=%6.2f\n,a,b,c1,c2,d,e);
printf(f=%15.6f,g=%15.12f\nm=%ld,n=%ld\np=%u,q=%u\n,f,g,m,n,p,q);
}
编译结果:
--------------------Configuration: 18.31 - Win32 Debug--------------------
Compiling...
18.31.c
C:\Documents and Settings\Administrator\物理学院张锦华C语言\18.31.c(11) : warning C4305: = : truncation from const double to float
C:\Documents and Settings\Administrator\物理学院张锦华C语言\18.31.c(11) : warning C4305: = : truncation from const double to float
C:\Documents and Settings\Administrator\物理学院张锦华C语言\18.31.c(13) : warning C4244: = : conversion from double to float , possible loss of data
C:\Documents and Settings\Administrator\物理学院张锦华C语言\18.31.c(13) : warning C4244: = : conversion from double to float , possible loss of data
18.31.obj - 0 error(s), 0 warning(s)
修改后运行结果:
④修改后源程序
#includestdio.h
void main()
{int a,b;
float d,e;
char c1,c2;
double f,g;
long m,n;
unsigned int p,q;
scanf(%d,%d,%c,%c,%f,%f,%lf,%lf,%ld,%ld,%u,%u,a,b,c1,c2,d,e,
文档评论(0)