首页 > 其他分享 >实验1

实验1

时间:2023-10-06 11:55:39浏览次数:21  
标签:include return int scanf 实验 printf main

实验任务1

 1 #include <stdio.h>
 2 int main ()
 3 {
 4     printf(" o \n");
 5     printf("<H>\n");
 6     printf("I I \n");
 7     
 8     return 0;
 9     
10  } 

运行结果

task1_1

task1_2

实验任务2

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

运行结果

 

 

 

实验任务3

 1 #include <stdio.h>
 2 int main ()
 3 {
 4     char ans1 , ans2;
 5     
 6     printf("每次课前认真预习、课后及时复习了没?(输入y或Y表示有, 输入n或N表示没有);"); 
 7     ans1 = getchar();
 8     
 9     getchar();
10     
11     printf("\n动手敲代码实践了没?(输入y或Y表示有, 输入n或N表示没有);");
12     ans2 = getchar();
13     
14     getchar();
15     
16     if(ans1 == 'y'||ans1 == 'Y'&&(ans2 == 'y' || ans2 == 'Y'))
17     printf ("\n罗马不是一天建成的,继续保持哦:)\n");
18     
19     else
20     printf("\n罗马不是一天毁灭的,我们来建设吧\n");
21     
22     
23     return 0;
24     
25  } 

运行结果

 

 

 

 

实验任务4

 1 #include <stdio.h>
 2 int main ()
 3 {
 4     double x, y;
 5     char c1 , c2 , c3;
 6     int a1 , a2 , a3;
 7     
 8     scanf("%d%d%d", &a1 , &a2 ,&a3);
 9     printf("a1 =%d ,a2 = %d , a3 = %d\n", a1 ,a2 , a3);
10     
11     scanf("%c%c%c", &c1 , &c2 , &c3);
12     printf("c1 = %c , c2 = %c , c3 = %c\n",c1 , c2 ,c3 );
13     
14     scanf ("%lf%lf",&x , &y );
15     printf ("x = %lf , y = %lf\n" ,x,y);
16         
17     
18     return 0;
19     
20  } 

运行结果

实验任务5

 1 #include<stdio.h>
 2 int main(){
 3     int year;
 4     int j = 1;
 5     double i = 1;
 6     int t,m;
 7     
 8     while(j<=9){
 9         i*=10;
10         j++;
11         
12     }
13     year = i/(60*60*24*365);
14 
15     t = i/(60*60*24*365)*100;
16     m = t%100;
17     if(m>=50)
18     year+=1;
19     else if(m<50)
20     year = year+0;
21     
22     
23     printf("10亿秒约等于%d年\n",year);
24     
25     
26     
27 
28 
29 
30 
31 return 0;
32 }

运行结果

实验任务6

 1 #include<stdio.h>
 2 #include<math.h>
 3 int main()
 4 {
 5     double x , ans;
 6     
 7     scanf("%lf", &x);
 8     ans = pow(x,365);
 9     printf("%.2lf的365次方: %.2f\n", x , ans);
10          
11      
12     
13 
14     
15     
16 
17 
18 
19 
20 return 0;
21 }

 

tsak 6_2


#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     double c,f;
 4     
 5     while(scanf("%lf",&c)!=EOF)
 6     {
 7         f = 9*c/5 + 32;
 8         printf("摄氏度c = %.2f时,华氏度f = %.2f\n",c,f); 
 9         printf("\n");
10     }
11 
12 return 0;
13 }

实验8

 1 #include<stdio.h>
 2 #include<math.h>
 3 int main(){
 4     int a,b,c;
 5     double s,area;
 6     while(scanf("%d%d%d",&a,&b,&c)!=EOF)
 7     {
 8         s = (a+b+c)/2;
 9         area = sqrt(s*(s-a)*(s-b)*(s-c));
10         printf("a = %d,b = %d,c = %d,area = %.3f\n",a,b,c,area);
11         printf("\n");
12     }
13 
14 return 0;
15 }

 

标签:include,return,int,scanf,实验,printf,main
From: https://www.cnblogs.com/fz1003yy/p/17744392.html

相关文章

  • pta三次实验的总结
    第一次pta作业 在pta第一次作业,因为是第一次作业所以大体是比较容易,但是也有几个要注意的点,就是两个double的值相加减相乘的值与实际值会有一定的误差,误差大小为0.0000001,所以在写pta的三角形的判断类型的时候会有等腰三角形测试答案错误,不能通过测试点,但是在测试直角三角形时......
  • 实验1 C语言输入输出和简单程序编写
    1.实验任务11.c1#include<stdio.h>23intmain()4{5printf("o\n");6printf("<H>\n");7printf("II\n");89return0;10}1-1.c1#include<stdio.h>23in......
  • 实验1
    实验1-源代码1#include<stdio.h>23intmain()45{6printf("o\n");7printf("<H>\n");8printf("II\n");910return0;11}实验1-执行结果 实验1.1源代码1#include<stdio.h>23......
  • 实验一
    #include<stdio.h>intmain(){printf("OO\n");printf("<H><H>\n");printf("IIII\n");return0;......
  • 实验一
    #include<stdio.h>intmain(){printf("0\n");printf("<H>\n");printf("II\n");printf("0\n");printf("<H>\n");printf("II\n");return0;}  ......
  • 实验1.0
    1.实验任务1源代码#include<stdio.h>intmain(){printf("oo\n");printf("<H><H>\n");printf("IIII\n");getch();return0;}运行结果 2.实验任务2源代码#include<stdio.h>intma......
  • Android跨进程数据通道若干方案的实验笔记
    一、实验背景和目标我想做一个Android平台的跨进程数据通道,通过这个通道支持若干App之间的数据传输。我想到了一些传输方案,但是缺乏在方案中做出选型的评价依据。本实验会基于若干方案实现数据传输通道,在模拟的业务场景中进行实验,从功能性指标和非功能性指标对各方案做出评价。i.......
  • 实验1 C语言输入输出和简单程序编写
    1.实验任务1 task1_1源代码:1#include<stdio.h>2#include<stdlib.h>3intmain()4{5printf("0\n");6printf("<H>\n");7printf("II\n");8printf("0\n");9prin......
  • 实验1
    1.实验1实验1_1源代码1#include<stdio.h>2intmain(){3printf("O\n");4printf("<H>\n");5printf("II\n");6return0;7} 实验1_1运行结果截图 2.实验2实验2_1源代码 1#include<stdio.h>2intmain(......
  • 21 HCIA-综合实验
    拓扑规划说明如图1实现一个典型的企业网,其中总部(包含R1、SW1、SW2和SW3)为企业主园区网络,分支为企业分支网络,云部分代表互联网设备(8.8.8.8)。读者需要完成总部和分支基本的网络功能,可以访问互联网(8.8.8.8)以及通过GREVPN使得位于两个AS的终端实现跨越广域网的通信整......