| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 3041 人关注过本帖
标题:[求助]看看我老师留的作业吧!
只看楼主 加入收藏
zhanghuan_10
Rank: 1
等 级:新手上路
威 望:2
帖 子:751
专家分:0
注 册:2006-10-25
收藏
得分:0 
现在的翻译其本上都是这样的,我也没有办法啊!呵呵!

该学习了。。。
2006-10-28 18:20
kimylsy
Rank: 1
等 级:新手上路
帖 子:22
专家分:0
注 册:2006-10-18
收藏
得分:0 
以下是引用nuciewth在2006-10-26 21:49:50的发言:

能不能说清楚点,加上奖励值...
能不能按照你的思路把楼主给出的测试数据给算一下(写一下过程).谢谢.
测试数据:
Beijing Tokyo 1329 F
Shanghai Wuhan 433 Y
0
#
输出:3158.

也就是说 假如 是F的时候 那么 是否小于250的时候又该另外考虑呢? 最近没上这个论坛 不好意思

2006-10-28 19:04
小小贝
Rank: 1
等 级:新手上路
帖 子:44
专家分:0
注 册:2006-9-21
收藏
得分:0 
#include <stdio.h>
#define N 20
void main()
{
int n[N],k[N],i,j,count=0;
double sum1=1.0,sum2=1.0;
for(i=0;i<N;i++)
{
scanf("%d,%d",&n[i],&k[i]);
if(n[i]==0&&k[i]==0)
break;
count++;
}
for(j=0;j<count;j++)
{
sum1=1;
sum2=1;
for(i=1;i<=k[j];i++)
{
sum1=sum1*n[j];
n[j]--;
}
for(i=1;i<=k[j];i++)
{
sum2=sum2*i;
}
printf("%-10.0f\n",sum1/sum2);
}
}
我做的第二题
2006-10-28 23:27
zhanghuan_10
Rank: 1
等 级:新手上路
威 望:2
帖 子:751
专家分:0
注 册:2006-10-25
收藏
得分:0 
这个好像是不对吧!楼上的‘小小贝’当你输入 49 6 时输出的结果是什么呀?呵呵,好像和问题不一样啊!

该学习了。。。
2006-10-29 11:49
小小贝
Rank: 1
等 级:新手上路
帖 子:44
专家分:0
注 册:2006-9-21
收藏
得分:0 
没错啊.....就是你要得结果啊....
输入时要49,6这样输入的.你不会输错吧
2006-10-31 04:32
Dweng
Rank: 1
等 级:新手上路
帖 子:52
专家分:0
注 册:2006-10-31
收藏
得分:0 
晕。想念起了搞ACM的时光

就喜欢钓鱼
2006-10-31 15:48
zhanghuan_10
Rank: 1
等 级:新手上路
威 望:2
帖 子:751
专家分:0
注 册:2006-10-25
收藏
得分:0 
printf("%-10.0f\n",sum1/sum2);
为什么这样打印出的是整数啊?

该学习了。。。
2006-10-31 19:29
Dweng
Rank: 1
等 级:新手上路
帖 子:52
专家分:0
注 册:2006-10-31
收藏
得分:0 
sum1*1.0 / sum2*1.0

就喜欢钓鱼
2006-10-31 19:53
zhanghuan_10
Rank: 1
等 级:新手上路
威 望:2
帖 子:751
专家分:0
注 册:2006-10-25
收藏
得分:0 
谢谢,我知道了!原来是这么一回事啊!

该学习了。。。
2006-11-01 12:29
zhanghuan_10
Rank: 1
等 级:新手上路
威 望:2
帖 子:751
专家分:0
注 册:2006-10-25
收藏
得分:0 

The Angle
The interval angle between the hour hand and the minute hand is always among 0 degree and 180 degree(including 0 and 180 degree). For example, when it's 12 o'clock, the angle of the two hands is 0 while 6:00 is 180 degree. Try to calculate any degree when it's between 12:00 to 11:59.

Input
The input data are of various situations. Every team consists of two numbers : the first number stands for the hour(great than 0 and less than or equal to 12) and second represents the minute( among [0, 59]). The input ends when the two numbers are both zeros.

Output
Print out the minimum angle between the two hands with the normal time form outputed.

Input Sample
12 012 306 03 00 0 Output Sample
At 12:00 the angle is 0.0 degrees.
At 12:30 the angle is 165.0 degrees.
At 6:00 the angle is 180.0 degrees.
At 3:00 the angle is 90.0 degrees.


该学习了。。。
2006-11-01 16:23
快速回复:[求助]看看我老师留的作业吧!
数据加载中...
 
   



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

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