c语言第三次上机报告

c语言第三次上机报告

任务1:假设整型变量 a 的值是 1,b 的值是 2,c 的值是 3,请判断各语句的值,写出执行结果,并作简短分析.
1) x = a ? b : c;
2) y = (a = 2) ? b + a : c + a;

我的程序:

     #include<stdio.h>      
  1. void main()    
  2. {    
  3.     int a,b,c,x,y;    
  4.     a=1,b=2,c=3;    
  5.     x=a?b:c;    
  6.     y=(a=2)?b+a:c+a;    
  7.     printf("%d\n",x);    
  8.     printf("%d\n",y);    
  9. }    
#include<stdio.h>   
void main()  
{  
    int a,b,c,x,y;  
    a=1,b=2,c=3;  
    x=a?b:c;  
    y=(a=2)?b+a:c+a;  
    printf("%d\n",x);  
    printf("%d\n",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()    

  1. {    
  2.     int a,b,c;    
  3.     a=1,b=2,c=0;    
  4.     int A,B,C;    
  5.     A=a&&c;    
  6.     B=a||c&&b;    
  7.     C=a||c||(a&&b);    
  8.     printf("%d\n%d\n%d\n",A,B,C);    
  9. }    
#include<stdio.h>   
void main()  
{  
    int a,b,c;  
    a=1,b=2,c=0;  
    int A,B,C;  
    A=a&&c;  
    B=a||c&&b;  
    C=a||c||(a&&b);  
    printf("%d\n%d\n%d\n",A,B,C);  
}  


运行程序:

 

 

 

任务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>      
  1. #include<math.h>      
  2. #include<conio.h>      
  3. void main()    
  4. {    
  5.     float a,b,c;    
  6.     a=3*(2L+4.5f)-012+44;    
  7.     b=3*(int)sqrt(144.0);    
  8.     c=cos(2.5f + 4)-6*27L+1526 -2.4L;    
  9.     printf("%f\n%f\n%f\n",a,b,c);    
  10. }    
#include<stdio.h>   
#include<math.h>   
#include<conio.h>   
void main()  
{  
    float a,b,c;  
    a=3*(2L+4.5f)-012+44;  
    b=3*(int)sqrt(144.0);  
    c=cos(2.5f + 4)-6*27L+1526 -2.4L;  
    printf("%f\n%f\n%f\n",a,b,c);  
}  


运行程序:

  

 

 

 

任务4:以下两个程序都能实现了“取两个数最大值”算法,理解并分析两个程序的不同.
写法一:

 

        double dmax (double x, double y)    
  1. {     
  2.   if (x > y)     
  3.       return x;     
  4.   else     
  5.       return y;     
  6.  }     
  7.     
  8. int main()    
  9. {    
  10.   double a,b;    
  11.   printf("Input 2 number:\n");    
  12.   scanf_s("%lf %lf",&a,&b);    
  13.   printf("The max is:%f \n",dmax(a,b));    
  14. }  <BR style="PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; PADDING-TOP: 0px">  
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));  
}  

 

写法二:

        double dmax (double x, double y);    
  1. int main()    
  2. {    
  3.  double a,b;    
  4.  printf("Input 2 number:\n");    
  5.  scanf_s("%lf %lf",&a,&b);    
  6.  printf("The max is:%f \n",dmax(a,b));    
  7. }     
  8. double dmax (double x, double y)    
  9. {     
  10.   if (x > y)     
  11.       return x;     
  12.   if (x < y)     
  13.       return y;     
  14.  }    
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)从而使程序更简洁。

 

 

 

 

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

我的程序:

       #include<stdio.h>      
  1. double tmax(double x, double y, double z)    
  2.  {    
  3.      if(x>y&&x>z)    
  4.          return x;    
  5.      if(y>x&&y>z)    
  6.          return y;    
  7.      if(z>x&&z>y);    
  8.      return z;    
  9.  }    
  10.  int main()    
  11.  {    
  12.      double a,b,c;    
  13.      printf("Input 3 number:\n");    
  14.      scanf_s("%Lf %Lf %Lf",&a,&b,&c);    
  15.      printf("The max is:%f \n",tmax(a,b,c));    
  16.  }    
#include<stdio.h>   
double tmax(double x, double y, double z)  
 {  
     if(x>y&&x>z)  
         return x;  
     if(y>x&&y>z)  
         return y;  
     if(z>x&&z>y);  
     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",tmax(a,b,c));  
 }  

运行程序:

 

 

 

 

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

用一个循环和++来实现

我的程序:

     #include<stdio.h>      
  1. void main()    
  2. {    
  3.     for(int i=1;i<=10;i++)    
  4.         printf("%d\n",i);    
  5. }    
#include<stdio.h>   
void main()  
{  
    for(int i=1;i<=10;i++)  
        printf("%d\n",i);  
}  


运行程序:

 

 

 

 

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

用一个循环和--来实现

我的程序:

    #include<stdio.h>      
  1. void main()    
  2. {    
  3.     for(int i=10;i>=-10;i--)    
  4.         printf("%d\n",i);    
  5. }    
#include<stdio.h>   
void main()  
{  
    for(int i=10;i>=-10;i--)  
        printf("%d\n",i);  
}  


运行程序:

 

 

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值