博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C - The C Answer (2nd Edition) - Exercise 1-4
阅读量:5160 次
发布时间:2019-06-13

本文共 885 字,大约阅读时间需要 2 分钟。

/*Write a program to print the corresponding Celsius to Fahrenheit table.*/#include 
/* print Celsius-Fahrenheit table for celsius = 0, 20, ..., 300; floating-point version */main(){ float fahr, celsius; int lower, upper, step; lower = 0; /* lower limit of temperature table */ upper = 300; /* upper limit */ step = 20; /* step size */ printf("Celsius Fahr\n"); celsius = lower; while (celsius <= upper) { fahr = (9.0 * celsius) / 5.0 + 32.0; printf("%3.0f %6.1f\n", celsius, fahr); celsius += step; }}/* Output:Celsius Fahr 0 32.0 20 68.0 40 104.0 60 140.0 80 176.0100 212.0120 248.0140 284.0160 320.0180 356.0200 392.0220 428.0240 464.0260 500.0280 536.0300 572.0Press any key to continue . . .*/

转载于:https://www.cnblogs.com/brucemengbm/p/6961770.html

你可能感兴趣的文章
【LOJ】#2549. 「JSOI2018」战争
查看>>
MYSQL逆向工程generatorConfig
查看>>
Microsoft Visual Studio 2010(vs10)安装与使用
查看>>
sitecore系列教程之Sitecore个性化-体验概况概述
查看>>
【洛谷】P1876 开灯
查看>>
本周总结
查看>>
关于“/”应用程序中的服务器错误 之解决方案
查看>>
php编译安装参数说明
查看>>
Windows推包脚本
查看>>
多表查询
查看>>
单表查询
查看>>
网络并发 数据库可能的面试题
查看>>
mysql 之多表查询
查看>>
MySQL之视图、触发器、事务、存储过程、函数
查看>>
Navicat工具、pymysql模块
查看>>
MySQL之索引原理与慢查询优化
查看>>
MySQL之锁、事务、优化、OLAP、OLTP
查看>>
MySQL之创建用户和授权
查看>>
学生选课系统
查看>>
高大上版解决粘包问题
查看>>