目标:
1. 掌握C语言基本运算符和表达式用法;
2. 预习选择和重复控制语句的用法.
任务1:假设整型变量 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,b,c;
a=1;
b=2;
c=3;
int x,y;
x = a ? b : c;
y = (a = 2) ? b + a : c + a;
printf("%d %d\n",x,y);
}
运行截图:
任务2:假设整型变量a 的值是1 ,b 的值是2 ,c 的值是0 ,请判断各语句的值,写出执行结果,并作简短分析.
1) a && c
2) a || c &&b
3) a || c|| (a && b)
------------------------------------任务分割线------------------------------------
我的程序:
#include<stdio.h>
void main()
{
int a,b,c;
a=1,b=2,c=0;
int x1,x2,x3,x4,x5;
x1=a&&c;
x2=a||c&&b;
x3=a||c||(a && b);
x4=b && c && !a;
x5=a && !((b || c) && !a) ;
printf("%d %d %d %d %d\n",x1,x2,x3,x4,x5);
}
运行截图:
任务3. 写程序计算以下各个表达式的值。
说明: 程序头文件要添加 #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 x,y,z;
x=3 * (2L + 4.5f) - 012 + 44 ;
y=3 * (int)sqrt(144.0) ;
z=cos(2.5f + 4) - 6 *27L + 1526 - 2.4L;
printf("%f %f %f\n",x,y,z);
}
运行截图:
任务4:以下两个程序都能实现了“取两个数最大值”算法,理解并分析两个程序的不同.
------------------------------------任务分割线------------------------------------
任务5:参考任务4,编写“返回三个参数中最大的一个”的程序,要求函数名为 double tmax(double, double, double),详细说明设计思路.
------------------------------------任务分割线------------------------------------
我的程序:
#include<stdio.h>
double tmax (double x, double y, double 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",tmax(a,b,c));
}
double tmax (double x, double y, double z)
{
if (x > y&&x > z)
return x;
if (x < y&&z < y)
return y;
if (x < z&&y <z)
return z;
}
运行截图:
任务6:写一个简单程序,它输出从1 到10的整数,详细说明设计思路。
------------------------------------任务分割线------------------------------------
我的程序:
#include<stdio.h>
void main()
{
int i;
i=1;
while(i<=10)
{ printf("%d\n",i);
i++;
}
}
运行截图: