开发平台(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