标题:数据类型的转换
取消只看楼主
mscool
Rank: 1
等 级:新手上路
帖 子:53
专家分:0
注 册:2013-5-9
结帖率:92.31%
已结贴  问题点数:20 回复次数:6 
数据类型的转换
题目是求任意时间钟表上分针和时针之间的夹角 我的程序如下
#include<stdio.h>
#include<math.h>
int main()
{
 float hour,min,temp,a,b,c;
 printf("please write the time in tewelf mode like 11 11 11\n");
 scanf("%f %f %f",a,b,c);
  if(a<0||b<0||c<0||a>11||b>59||c>59)  
  printf("error!\n");  
  else
  min=60*b+c/10;
  hour=30*a+min/12;
  temp=fabs(min-hour);
  if(temp>180)   
     printf("the angle is %f.\n.",temp-180);
  else   
     printf("the angle is %f.\n",temp);  
  return 0;
}
 但是老提示出错
搜索更多相关主题的帖子: write angle please include 
2013-06-12 19:36
mscool
Rank: 1
等 级:新手上路
帖 子:53
专家分:0
注 册:2013-5-9
得分:0 
cuowutishi ruxia
time.c: 在函数‘main’中:
time.c:8:3: 警告: 格式 ‘%f’ expects argument of type ‘float *’, but argument 2 has type ‘double’ [-Wformat]
time.c:8:3: 警告: 格式 ‘%f’ expects argument of type ‘float *’, but argument 3 has type ‘double’ [-Wformat]
time.c:8:3: 警告: 格式 ‘%f’ expects argument of type ‘float *’, but argument 4 has type ‘double’ [-Wformat]
menshuai@menshuai-VirtualBox:~/desktop$ gcc -g time.c
time.c: 在函数‘main’中:
time.c:8:3: 警告: 格式 ‘%f’ expects argument of type ‘float *’, but argument 2 has type ‘double’ [-Wformat]
time.c:8:3: 警告: 格式 ‘%f’ expects argument of type ‘float *’, but argument 3 has type ‘double’ [-Wformat]
time.c:8:3: 警告: 格式 ‘%f’ expects argument of type ‘float *’, but argument 4 has type ‘double’ [-Wformat]

2013-06-12 19:38
mscool
Rank: 1
等 级:新手上路
帖 子:53
专家分:0
注 册:2013-5-9
得分:0 
不好意思 我编程用的是Linux的vim 但是还没安装中文输入法 必须在虚拟机和linux之间反复切换……二者不共享黏贴板……我在终端输入gcc -g time.c 就会出现如上提示 我试着把float改成double 还是不行  求高手帮忙解答一下
2013-06-12 19:43
mscool
Rank: 1
等 级:新手上路
帖 子:53
专家分:0
注 册:2013-5-9
得分:0 
回复 4楼 编程20123165
谢谢 我错了
2013-06-13 08:37
mscool
Rank: 1
等 级:新手上路
帖 子:53
专家分:0
注 册:2013-5-9
得分:0 
回复 6楼 蚕头燕尾
唉 这是第二次了 悲催啊 我太马虎了
2013-06-13 08:38
mscool
Rank: 1
等 级:新手上路
帖 子:53
专家分:0
注 册:2013-5-9
得分:0 
回复 7楼 YJ_Hao
就一个main函数 一对花括号 没错啊
2013-06-13 08:39
mscool
Rank: 1
等 级:新手上路
帖 子:53
专家分:0
注 册:2013-5-9
得分:0 
回复 8楼 嗜血老妖
这次记住了
2013-06-13 08:40



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




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

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