#8718: RE 方便幫忙看一下是哪邊出錯嗎?


ms0723585 (Hex)

學校 : 佛光大學
編號 : 14313
來源 : [150.117.222.212]
最後登入時間 :
2017-07-15 14:40:52
c061. 00530 - Binomial Showdown -- UVa530 | 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