劉思含實驗一

liusihan發表於2024-09-29

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

執行結果

問題回答

因為Enter鍵佔了一個字元

實驗四

原始碼

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

執行結果

相關文章