- 1、本文档共26页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
实验二 基本数据类型、运算符及表达式
1. 分析以下程序,判断输出结果,然后上机运行程序验证结果。
(1)
# include stdio.h
main( )
{ int sum = 1 ;
sum = sum +100 ;
printf(SUM = %d\n, sum);
}
输出结果为:101
(2) 改正后的程序为:
# include stdio.h
main( )
{ char ch1 , ch2 ;
ch1 = b ;//不能把字符串b赋给字符变量
ch2 = ch1 - 32 ;
printf(%c %d %c %d\n, ch2,ch2,ch1,ch1);
}
(3)
# include stdio.h
main( )
{ int a = 10 , b =3 ;
printf(%d\n, (a = a - 1 , b + a , b + 2));
}
输出结果为5,(a = a - 1 , b + a , b + 2)作为一个逗号表达式。
(4)
# include stdio.h
main( )
{
int a = 5 , b = 3 , c = 4 ;
a *= a += 3;
b = ++c ;
c = b++ ;
a = b +++ c ;
printf(\n%d,%d,%d, a , b , c);
}
输出结果为:11,7,5
(5)程序改正为:
# include stdio.h
main( )
{
int a = 1 , b = 2 , c = 3 , logic ;
logic = a + b c b = c ;
printf(logic = %d\n, logic);
logic = a = b + c || b == c;
printf(logic = %d\n, logic);
logic =!(a c) +b!=1 (a + c)/2 ;
printf(logic = %d\n, logic);
}
输出结果为:
logic = 0
logic = 0
logic = 1
2. 以下程序可能有多处错误,请改正并调试运行程序。
(1)
# include stdio.h
# include HIGH 10//改为:#include HIGH 10
main( )
{ int a = 5 ; //可再定义一个变量b
HIGH *= HIGH ; //HIGH是宏名,不能被赋值,可改为:b=HIGH*HIGH;
printf(\n%d,%d, a , HIGH); //输出a,b的值
}
改正后的程序为:
# include stdio.h
# define HIGH 10
main( )
{ int a = 5 ,b;
b = HIGH*HIGH ;
printf(\n%d,%d, a , b);
}
输出结果为:5,100
(2)此程序功能为将输入的华氏温度转换成摄氏温度,公式为c = 5 / 9 ·(f–32 )。
# include stdio.h
main( )
{ float c , f?;
scanf(%f, f)?;//输入时,变量要用取地址
c = (5 / 9)· (F – 32)?; //5/9是为0的,要变成实数。F没有定义,定义的是f
printf(( F= %f , C = % f\n, f , c)?;//多了一个左括号
}
改正后的程序为:
# include stdio.h
void main( )
{
float c,f;
scanf(%f, f);
c=(5.0/9)*(f-32);
printf(F= %f,C = %f\n,f,c);
}
(3)此程序功能是求:y = 。
# include stdio.h
# include math.h
main( )
{ int a ;
double x , y ;
Scanf(%d%f, a , x)?;//scanf不能大写,x的类型是double,格式化字符应该用%ld
y = SIN(sqr(ax) + LN(a + x)?;//sin函数不能大写,sqr应该为sqrt,ax应为a*a,LN不是有效的函数名,要求自然对数用的是log(),另外括号不匹配
printf( Y= %f \n, y)?;//y的类型是double,格式化字符应该用%ld
}
程序改正后为:
# include stdio.h
# include math.h
main( )
{
int a ;
double x , y ;
scanf(%d%lf,
文档评论(0)