首页 > 其他分享 >实验任务7

实验任务7

时间:2023-10-02 14:56:16浏览次数:34  
标签:lf %. printf 2f 任务 实验 ans

#include <stdio.h>
int main()
{
double x, ans;
while(scanf("%lf", &x) != EOF){
    ans=x*9.0/5.0+32;
    printf("ÉãÊ϶Èc=%.2f",x);
    printf("£¬");
    printf("»ªÊ϶Èf=%.2f\n",ans);
    }
 return 0; 
}

 

标签:lf,%.,printf,2f,任务,实验,ans
From: https://www.cnblogs.com/yukinoshita-/p/17739923.html

相关文章

  • 实验任务5
    #include<stdio.h>intmain(){intyear;doubleyear1=1000000000.0/365.0/24.0/3600.0;doubleyear2=year1;while(year2>=1){year2--;}if(year2>=0.5){year=int(year1)+1;}else{year=int(year1);}printf(&......
  • 实验任务4
    #include<stdio.h>intmain(){doublex,y;charc1,c2,c3;inta1,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);prin......
  • 实验1 C语言输入输出和简单程序编写
    1.实验任务1task1_1.c源代码1#include<stdio.h>2intmain()3{4printf("o\n");5printf("<H>\n");6printf("II\n");7printf("o\n");8printf("<H>\n"......
  • 实验1c语言的简单输入输出和简单程序编写
    实验1#include<stdio.h>#include<stdlib.h>intmain(){printf("0\n");printf("<H>\n");printf("II\n");system("pause");return0;}实验2#include<stdio.h>#include<stdlib.......
  • 实验1_task1
    task1_11#include<stdio.h>2intmain()3{4printf("o\n");5printf("<H>\n");6printf("II\n");7printf("o\n");8printf("<H>\n");9print......
  • 实验1C语言输入输出和简单程序编写
    1.实验1实验1.1源代码 1//打印一个字符小人23#include<stdio.h>4intmain()5{6printf("0\n");7printf("<H>\n");8printf("II\n");9printf("0\n");10printf("<H>......
  • 【14.0】中间件、跨域资源共享、后台任务、测试用例
    【一】中间件【1】中间件介绍FastAPI中间件是在处理请求和响应的过程中介入的组件,允许你在请求到达处理函数之前或响应离开处理函数之后执行一些逻辑。中间件在FastAPI中起到非常灵活的作用,可以用于日志记录、身份验证、异常处理等。【2】中间件的工作原理(1)注册中间件......
  • springboot 与异步任务,定时任务,邮件任务
    异步任务在Java应用中,绝大多数情况下都是通过同步的方式来实现交互处理的;但是在处理与第三方系统交互的时候,容易造成响应迟缓的情况,之前大部分都是使用多线程来完成此类任务,其实,在Spring3.x之后,就已经内置了@Async来完美解决这个问题。SpringBoot实现比较简单主启动类:添加注释......
  • 轻松完成图像处理任务的Python工具
    随着数字时代的到来,图像处理技术越来越重要。Python作为一门功能强大、易学易用的编程语言,自然也成为了图像处理领域的一把好手。Python提供了很多开源工具,可以帮助我们轻松完成各种图像处理任务。本文将介绍几种可用于图像处理的Python工具。一、PillowPillow是Python图像处理领域......
  • 实验1
    任务1源代码: 任务1结果: 任务2源代码:  任务2结果: 任务3源代码: 任务3结果:任务4源代码:  任务4结果:  任务5源代码:  任务5结果:  任务6源代码:  任务6结果: 任务7源代码:  任务7结果:  任务8源代码:  任务8结果: ......