×
解除綁定,重新設定系統帳號的密碼
您的系統帳號 ID:
您的系統帳號:
您的帳號暱稱:
設定新密碼:
設定新密碼:
×
請輸入要加入的「課程代碼」
請向開設課程的使用者索取「課程代碼」
分類題庫
解題動態
排行榜
討論區
競賽區
登入
註冊
發表新討論
#8718: RE 方便幫忙看一下是哪邊出錯嗎?
ms0723585
(Hex)
學校 : 佛光大學
編號 : 14313
×
傳送站內訊息
傳給:
主題:
內容:
來源 : [150.117.222.212]
最後登入時間 :
2017-07-15 14:40:52
c061.
00530 - Binomial Showdown
--
UVa
530
| From: [203.145.208.239] | 發表日期 : 2014-03-18 03:17
#include <iostream>
#include <math.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std ;
int main(int argc, char** argv) {
int n,m,i,a,c;
int x=1,y=1,z=1 ;
while(cin >> n >> m )
{
if((n==0)&&(m==0))
{
break;
}
for(i=1;i<=n;i++)
{
x=x*i;
}
for(i=1;i<=m;i++)
{
y=y*i;
}
a=n-m;
for(i=1;i<=a;i++)
{
z=z*i;
}
c=x/(y*z);
cout << c << endl;
}
return 0;
}
請幫忙一下 感恩 跑都跑RE出來..
ZeroJudge Forum