实验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>
   #include<stdlib.h>
   int main()
   {
        system("color 06");
        
        int a,b,c;
       
            scanf("%d, %d, %d",&a,&b,&c);
         
       if(a<=0||b<=0||c<=0)
       {
         printf("Hey you little bitch");
       }
       
       else if(a+b>c&&a+c>b&&b+c>a)
           {
               printf("yes");
         }
       else
       {
             printf("no");
           
       }
       return 0;
   }

 

 

#include <stdio.h>

int main()
{
char ans1, ans2; // 用于保存用户输入的答案

printf("每次课前认真预习、课后及时复习了没? (输入y或Y表示有,输入n或N表示没有) : ");
ans1 = getchar(); // 从键盘输入一个字符,赋值给ans1

getchar(); // 思考这里为什么要加这一行。试着去掉这一行,看看对运行有没有影响。

printf("\n动手敲代码实践了没? (输入y或Y表示敲了,输入n或N表示木有敲) : ");
ans2 = getchar();

if (ans1=='y'&& ans1=='Y' && ans2=='y' && ans2=='Y') // 待补足,判断用户回答ans1和ans2都是小写y或大写Y

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 = %f, y = %lf\n",x, y);
 return 0;
}

 

#include <stdio.h>

int main() 
{
    int year1,year2;
    float nuw;
    
    int second=1000000000;
    
    year1=second/(3600*24*365);
    
    nuw=second/(3600*24*365);
    
    if(nuw<0.5)
      printf("10ÒÚÃëÔ¼µÈÓÚ%dÄê\n", year1);
    else
    {
        year2=year1+1;
        printf("10ÒÚÃëÔ¼µÈÓÚ%dÄê\n", year2);
    }
    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 <stdlib.h>
#include <stdio.h>
int main() 
{
    system("color 02");
    printf("请输入摄氏度,我将它转化为华氏度\n");
    double C,F;
    while (scanf("%lf",&C))
    {
        F = 9*C/5+32;
        printf("摄氏度C=%.2lf时,华氏度F=%.2lf\n",C,F);
    }
    return 0;
}

 

 

#include <stdlib.h>
#include <stdio.h>
#include <math.h>
int main() 
{
    system("color 02");
    printf("ÇëÊäÈëÈý½ÇÐεÄÈýÌõ±ß£¬ÎÒ½«¼ÆËãËüµÄÃæ»ý\n");
    int a,b,c;
    double s,p;
    while(scanf("%d %d %d",&a,&b,&c))
     {
         
       s=(a+b+c)/2;
       p=sqrt(s*(s-a)*(s-b)*(s-c));
       printf("Èý½ÇÐεÄÃæ»ýÊÇ%.3lf\n",p);
     }
    return 0;
}

 

 

posted @ 2023-10-05 21:28  It-just-works  阅读(9)  评论(0编辑  收藏  举报