×
解除綁定,重新設定系統帳號的密碼
您的系統帳號 ID:
您的系統帳號:
您的帳號暱稱:
設定新密碼:
設定新密碼:
×
請輸入要加入的「課程代碼」
請向開設課程的使用者索取「課程代碼」
Problems
Submissions
Rank
Forum
Contest
Login
Register
New Thread
#1828:
sexmaltreat
(稱霸ㄍ頭)
School : 臺北市立成功高級中學
ID : 6136
×
傳送站內訊息
To:
Subject:
Content:
IP address : [220.181.108.176]
Last Login :
2012-04-20 21:28:37
c036.
00573 - The Snail
--
UVa
573
| From: [140.115.5.114] | Post Date : 2009-04-21 22:03
# include <iostream>
using
namespace
std;
int
main()
{
double
a,s,d,f,w,e;
int
q,code;
while
(cin>>a>>s>>d>>f)
{
if
(a==0&&s==0&&d==0&&f==0)
break
;
code=0;
e=a;
w=0;
q=0;
while
(1)
{
w=s*(1-0.01*f*q);
if
(w<=0)
w=0;
q++;
a=a-w;
if
(a<0)
{
code=1;
break
;
}
a=a+d;
if
(a>e)
{
break
;
}
else
if
(a==e)
{
q+=1;
break
;
}
}
if
(code==1)
cout<<"success on day "<<q<<endl;
else
cout<<"failure on day "<<q<<endl;
}
system("pause");
return
0;
}
我自己寫ㄉ程式 放測試資料上去都可以
可是就是不會過=ˇ=
幫忙看一下
我有哪裡語法錯誤ㄌㄇ
#8278: Re:幫忙
a450
(要学会宽容)
School : 福建省福州第十九中学
ID : 33926
×
傳送站內訊息
To:
Subject:
Content:
IP address : [118.189.34.85]
Last Login :
2016-04-05 21:29:33
c036.
00573 - The Snail
--
UVa
573
| From: [27.151.35.186] | Post Date : 2013-10-04 12:26
我没仔细看
w=s*(1-0.01*f*q); 之间的*0.01改成f/100.0试试
ZeroJudge Forum