您的位置:首页 > 其它

第三次程序设计上机报告

2013-03-29 16:33 183 查看
任务一

要求:假设整型变量 a 的值是 1,b 的值是 2,c 的值是 3,请判断各语句的值,写出执行结果,并作简短分析.

  1)  x = a ? b : c;

  2)  y = (a = 2) ? b + a : c + a;

 

# include<stdio.h>
void main()
{
int a=1,b=2,c=3;
int u;
u=a?b:c;
printf("u=a?b:c=%d\n",u);
u=(a=2)?b+a:c+a;
printf("u=(a=2)?b+a:c+a=%d\n",u);
}


 



 

 

 

任务二

要求:假设整型变量a 的值是1 ,b 的值是2 ,c 的值是0 ,请判断各语句的值,写出执行结果,并作简短分析.

1)  a && c

2)  a || c &&b

3)  a || c|| b !(a && b)

4)  b && c && !a

5)  a && !((b || c) && !a)  

 

# include<stdio.h>
void main()
{
int a=1,b=2,c=0;
int x;
x=a&&c;
printf("x=a&&c=%d\n",x);
x=a||c&&b;
printf("x=a||c&b=%d\n",x);
x=a||c||(a&&b);
printf("x=a||c||b!(a&&b)=%d\n",x);
x=b&&c&&!a;
printf("x=b&&c&&!a=%d\n",x)
x=a&&!((b||c)&&!a);
printf("x=a&&!((b||c)&&!a=%d\n",x);
}




 

 

任务三

要求:写程序计算以下各个表达式的值。

说明: 程序头文件要添加 #include<math.h> 和  #include <conio.h>

  1)3 * (2L + 4.5f) - 012 + 44

  2)3 * (int)sqrt(144.0)

  3)cos(2.5f + 4) - 6 *27L + 1526 - 2.4L

# include<stdio.h>
#include<math.h>
#include<conio.h>
void main()
{
float u,v,w;
u=3*(2L+4.5f)-012+44;
printf("u=3*(2L+4.5f)-012+44=%f\n",u);
v=3*(int)sqrt(144.0);
printf("v=3*(int)sqrt(144.0)=%f\n",v);
w=cos(2.5f+4)-6*27L+1526-2.4L;
printf("w=cos(2.5f+4)-6*27L+1526-2.4L=%f\n",w);

}


 



 

任务四:

要求:以下两个程序都能实现了“取两个数最大值”算法,理解并分析两个程序的不同。

写法一:

 

#include<stdio.h>
double dmax (double x, double y)
{
if (x > y)
return x;
else
return y;
}
int main()
{
double a,b;
printf("Input 2 number:\n");
scanf_s("%lf %lf",&a,&b);
printf("The max is:%f \n",dmax(a,b));
}


写法二:

#include<stdio.h>
double dmax (double x, double y);
int main()
{
double a,b;
printf("Input 2 number:\n");
scanf_s("%lf %lf",&a,&b);
printf("The max is:%f \n",dmax(a,b));
}
double dmax (double x, double y)
{
if (x > y)
return x;
if (x < y)
return y;
}


用else取代了if(x<y)从而使程序有所简化。

任务五:

要求:参考任务4,编写“返回三个参数中最大的一个”的程序,要求函数名为 double tmax(double, double, double),详细说明设计思路。

代码:

#include<stdio.h>
double dmax(double x, double y, double z)
{
if(x>y)
if(x>z)
return x;
else
return z;
else
if(y>z)
return y;
else
return z;
}
int main()
{
double a,b,c;
printf("Input 3 number:\n");
scanf_s("%lf %lf %lf",&a,&b,&c);
printf("The max is:%f \n",dmax(a,b,c));
}


 

任务六

要求:写一个简单程序,它输出从1 到10的整数,详细说明设计思路。

代码:

#include<stdio.h>
void main()
{
int a=1;
while(a<=10)
{
printf("%3d",a);
a=a++;
}
}


 



 

任务七:

要求:写一个简单程序,它输出从10到-10的整数,详细说明设计思路。

代码:

#include<stdio.h>
void main()
{
int a=10;
while(a>=-10)
{
printf("%3d",a);
a=a--;
}
}


程序

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: