实验1

任务1 源代码:
#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()
{
printf(" O     0\n");
printf("<H>   <H>\n");
printf("I I   I I\n");
return 0;
}

 

 

运行结果

 

 

任务2

源代码

 1 #include <stdio.h>
 2 int main()
 3 {
 4     double a,b,c;
 5     scanf("%lf%lf%lf",&a,&b,&c);
 6     if(a+b>c)
 7       printf("能构成三角形\n");
 8     else
 9         printf("不能构成三角形\n");
10         
11         return 0;
12 }

 

 

运行结果

 

 

任务3

源代码


#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((ans2=='y'||ans2=='Y')&&(ans1=='y'||ans1=='Y'))
printf("\n罗马不是一天建成的, 继续保持哦:)\n");
else
printf("\n罗马不是一天毁灭的, 我们来建设吧\n");
return 0;

}


 

运行结果

 

 

问题回答:去掉代码后,无法回答第二个问题,可能因为有一个回车没有录入

 

 

 

 

任务4

源代码

#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;
}

 

运行结果

任务5

源代码

#include <stdio.h>

int main()
{
    int year;
    scanf("%d",&year);
     
    year=year/(24*60*60*365);
    printf("10亿秒约等于%d年\n",year);
    return 0 ;
}

 

 

运行结果

  任务6

源代码

#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;
    
}

 

 

 

运行结果

任务7

源代码

 1 #include <stdio.h>
 2 int main()
 3 {
 4     double F,C;
 5     while(scanf("%lf",&C)!=EOF)
 6     {
 7     F=9*C/5+32;
 8     printf("摄氏度c=%.2f时,华氏度f=%.2f\n",C,F);
 9      
10     }
11     return 0;
12  } 

 

 

运行结果

任务8

源代码

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

 

 

运行结果

 

posted @ 2024-09-25 17:09  麟0803  阅读(7)  评论(0编辑  收藏  举报