首页 > 其他分享 >实验一

实验一

时间:2023-10-05 22:03:01浏览次数:27  
标签:main return int scanf 实验 printf include

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

 





 

int main()
{
    float a, b, c;
    scanf_s("%f%f%f", &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 == 'y' || ans1 == 'Y') && (ans2 == 'y' || ans2 == '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_s("%d%d%d", &a1, &a2, &a3);
    printf("a1 = %d,a2 = %d,a3 = %d\n", a1, a2, a3);

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

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


    return 0;
#include <stdio.h>
int main()
{
    int year;
    int t, m;
    int i = 1000000000;
    year = i / (60 * 60 * 24 * 365);
    t = year * 100;
    m = t % 100;
    if (m >= 50)
        year+= 1;
    else if (m < 50)
        year = year + 0;

    printf("10亿秒约等于%d年\n", year);
    return 0;
}

#include <stdio.h>
#include <math.h>
int main()
{
    double x, ans;
    scanf_s("%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_s("%lf", &x) != EOF)
    {
        ans = pow(x, 365);
        printf("%.2f的365次方: %.2f\n", x, ans);
        printf("\n");
    }
    return 0;
}

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

int main()
{
    double c, f;

    while (scanf_s("%lf", &c))
    {
        f = 9 * c / 5 + 32;
        printf("摄氏度C=%.2lf时,华氏度f=%.2lf\n", c,f);
            printf("\n");
    }



    return 0;
}

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

 

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

相关文章

  • 实验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的终端实现跨越广域网的通信整......
  • 实验1_c语言输入输出和简单程序应用编程
    实验一1-1#include<stdio.h>intmain(){printf("O\n");printf("<H>\n");printf("II\n");printf("O\n");printf("<H>\n");printf("II\n");......
  • 实验1
    实验1源代码1//打印一个字符小人23#include<stdio.h>4intmain()5{6printf("o\n");7printf("<H>\n");8printf("II\n");9printf("o\n");10printf("<H>\n&q......
  • 实验1 C语言输入输出和简单程序编写
    1.试验任务1  task1.c//打印一个字符小人#include<stdio.h>intmain(){printf("o\n");printf("<H>\n");printf("II\n");return0;} task1_1.c//在垂直方向上打印出两个小人#include<stdio.h>int......
  • 视频监控/监控汇聚平台EasyCVR协力打造智慧实验室
    实验室安全管理系统利用智能传感器和视频监控设备,结合物联网技术、视觉分析技术和大数据技术,构建了数字化的安全防控体系。该系统可以全面感知实验室的环境安全,实时监测和分析人员身份、操作规程以及安全措施的情况,快速上报安全事件并实现应急处置的闭环管理。通过科技手段,实验室......
  • 实验1 线性拟合 冷却
    '''目标:拟合物料冷却规律分类变量:物料规格,冷却方式连续变量:温度,时间其他因素:车间温度现实因素:初始温度,初始时间需求因素:目标温度的时间,目标温度的时长(时间-初始时间),当前时间的温度不加入分类变量则为单个线性模型''''''实验1只有温度和时间每个物料的初始温......