当前位置: 首页 > 工具软件 > Hangover > 使用案例 >

hdu1056-HangOver

南宫俊喆
2023-12-01

http://acm.hdu.edu.cn/showproblem.php?pid=1056

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<bitset>

using namespace std;

int main()
{
	double sum , c ;
	int ans ;
	while( ~scanf( "%lf" , &c ) )
	{
		ans = 2 ;
		sum = 0 ;
		if( c == 0 )
			break ;
		while( c > sum )
		{
			sum += 1.0 / ans ;
			ans++ ;
		}
		printf( "%d card(s)\n" , ans - 2 ) ;
	}
	return 0 ;
} 


 类似资料:

相关阅读

相关文章

相关问答