| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 495 人关注过本帖
标题:求教高手
取消只看楼主 加入收藏
lb827129
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2008-10-18
收藏
 问题点数:0 回复次数:1 
求教高手
#include <stdio.h>

int main(void)
{
  int choice = 0;
  double temperature = 0.0;
  printf("This program can do the following:\n"
         "1. Convert from degrees Centigrade to degrees Fahrenheit\n"
         "2. Convert from degrees Fahrenheit to degrees Centigrade\n"
         "Select the conversion (1 or 2): ");
  scanf("%d", &choice);

  printf("Enter a temperature in degrees %s: ",//这句是不是多余的//
                          (choice == 1 ?  "Centigrade" : "Fahrenheit"));//为什么要用这个表达式,难道不和下面的if重复吗//
  scanf("%lf", &temperature);
  if(choice == 1)
    printf("That is equivalent to %.2lf degrees Fahrenheit\n", temperature*9.0/5.0+32.0);
  else
    printf("That is equivalent to %.2lf degrees Centigrade\n", (temperature-32.0)*5.0/9.0);
  return 0;
}
2008-10-18 15:28
lb827129
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2008-10-18
收藏
得分:0 
(choice == 1 ?  "Centigrade" : "Fahrenheit")这个是什么意思
2008-10-23 17:33
快速回复:求教高手
数据加载中...
 
   



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

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