開發平台(Platform): (Ex: Win10, Linux, ...)
OS
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
Xcode
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
問題(Question):
為什麼輸入n,m無法讀入陣列
餵入的資料(Input):
18 6
預期的正確結果(Expected Output):
18 things is taken 6 at a time is 18564 exactly
錯誤結果(Wrong Output):
18564 things is taken 18564 at a time is 18564 exactly
程式碼(Code):(請善用置底文網頁, 記得排版,禁止使用圖檔)
//
// main.cpp
// sam
//
// Created by sam on 2019/9/3.
// Copyright ꤠ2019 sam. All rights reserved.
//
#include<iostream>
#include <stdio.h>
using namespace std;
long int lev(long int num){
long int a=1;
for(int i=1;i<=num;i++){
a=a*i;
}
return a;
}
int main(){
int i=0,count=0;
int n,m,k[i],l[i];
long int s[i];
long int num=1;
while(cin>>n>>m){
if(n==0||m==0){
break;
}
k[i]=n;
l[i]=m;
if(m<(n/2)){
m=n-m;
}
for(long int i=n;i>m;i