标题:怎么在打印标题?
只看楼主
编程小可乐
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2017-8-31
结帖率:0
已结贴  问题点数:10 回复次数:1 
怎么在打印标题?
求解!!!怎么在以下的程序中打印一个标题



/*使用公式℃=(5/9)(℉-32)打印下列华氏与摄氏温度对照表:*/
#include<stdio.h>
//当fahr=0,20,...300时,分别打印华氏和摄氏温度对照表
void main()
{
    int fahr,celsius;
    int lower,upper,step;

    lower=0;        //温度表上限
    upper=3000;        //温度表下限
    step=10;        //步长
                                                   
    fahr=lower;
    while(fahr<=upper)
    {
        celsius=5*(fahr-32)/9;
        printf("%d\t%d\n",fahr,celsius);
        fahr=fahr+step;
    }
}                    
/*声明fahr(华氏),celsius(摄氏),lower(上限),upper(下限),step(步长)五个变量
华氏上限设为零,循环条件为华氏温度不大于上限300的时候运行一下程序,如果大于上限300则跳出循环。*/
搜索更多相关主题的帖子: 打印 标题 step 循环 大于 
2017-08-31 11:04
rjsp
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
等 级:版主
威 望:507
帖 子:8890
专家分:53117
注 册:2011-1-18
得分:10 
程序代码:
#include <stdio.h>

int main( void )
{
    const int fahr_lower = 0;
    const int fahr_upper = 300;
    const int fahr_step  = 10;

    puts( "标题" );
    for( int fahr=fahr_lower; fahr<=fahr_upper; fahr+=fahr_step )
    {
        double celsius = 5.0/9.0 * (fahr-32.0);
        printf( "%d\t%.2f\n", fahr, celsius );
    }

    return 0;
}
2017-08-31 11:54



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-480380-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.013966 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved