刘思含实验一

test

实验任务1

源代码

#include<stdio.h>
int main()
{
     printf(" o o \n");
     printf("<H> <H>\n");
     printf("I I I I\n");

     return 0;
}

  运行结果

 

源代码

#include<stdio.h>
int main()
{
printf(" o \n");
printf("<H>\n");
printf("I I \n");
printf(" o \n");
printf("<H>\n");
printf("I I \n");
return 0;
}

 

  运行结果

实验二

源代码

#include<stdio.h>
int main()
{
    double a, b, c;
    scanf("%lf%lf%lf",&a, &b, &c);
    if(a + b > c && a + c > b && b + c > a  )
      printf("能构成三角形\n");
    else
      printf("不能构成三角形\n");
    return 0;
    
}

 

运行结果

 

实验三

#include<stdio.h>
int main()
{
    char ans1,ans2;
    printf("每次课前认真预习、课后及时复习了没?(输入y或Y表示有,输入n或者N表示没有):") ;
    ans1 = getchar();
    
    getchar();
    printf("\n动手敲代码了没?(输入y或Y表示敲了,输入n或N表示木有敲):");
    ans2 = getchar();
    if(ans1 != 0 && ans2 !=0)
      printf("\n罗马不是一天建成的,继续保持哦:)\n");
    else
      printf("\n罗马不是一天毁灭的,我们来建设吧\n");
    return 0;
}

运行结果

问题回答

 因为回车键占了一个字符

实验四

源代码

#include<stdio.h>
int main()
{
double x, y;
char c1, c2, c3;
int a1, a2, a3;

scanf("%d%d%d",&a1,&a2,&a3);
printf("a1 = %d,a2 = %d, a3 = %d\n",a1,a2,a3);

scanf("%c%c%c",&c1,&c2,&c3);
printf("c1 = %c, c2 = %c, c3 = %c\n", c1, c2, c3);

scanf("%lf,%lf",&x, &y);
printf("x = %lf, y = %lf\n",x,y);

return 0;

}

 运行结果

 

 实验五

源代码

#include<stdio.h> 
#include<math.h>

int main()
{
    int b;
    int a;
    int year;
    year = 31536000 ;
    a = pow(10.0,9.0);
    b = a / year +1;
    printf("%d",b);
    return 0;
    
    
    
}

运行结果

 实验六

源代码

#include <stdio.h>
#include <math.h>

int main()
{
    double x, ans;
    
    scanf("%lf",&x);
    ans = pow(x,365);
    printf("%.2f的365次方: %.2f\n", x, ans);
    return 0;
    
}

运行结果

源代码


#include<stdio.h>
#include <math.h>
int main()
{
double x, ans;

while(scanf("%lf",&x) != EOF)
{


ans = pow(x, 365);
printf("%.2f的365次方: %.2f\n", x, ans);
printf("\n");
}
return 0;
}


运行结果

实验七

源代码

#include<stdio.h>
int main()
{
    double C, F;
    while(scanf("%lf",&C) != EOF)
{
         F = (C / 5 * 9) + 32;
         printf("%.2f的华氏度:%.2f\n", C, F) ;
         printf("\n") ;
}
return 0;
}

    

 

 运行结果

实验八

源代码

#include<stdio.h>
#include<math.h>
int main()
{ 
    double a,b,c,s,num;
    while(scanf("%lf%lf%lf", &a,&b,&c) != EOF)
{
    s = (a + b + c) / 2;
    num = s * (s - a) * (s - b) *(s - c);
    double square = pow(num,0.5);
    printf("%.3f/n",square);
}
    return 0;
}
    
    

 

运行结果

 

posted @ 2024-09-29 20:23  liusihan  阅读(5)  评论(0编辑  收藏  举报