开发平台(Platform): (Ex: Win10, Linux, ...)
Os
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
Xcode
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
问题(Question):
为什么输出是0
喂入的资料(Input):
18
6
预期的正确结果(Expected Output):
18564
错误结果(Wrong Output):
c输出0
程式码(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(int num){
long int a=1;
for(int i=1;i<=num;i++){
a=a*i;
}
return a;
}
int main(){
int n,m;
long int num=1;
cin>>n>>m;
if(m<(n/2))
m=n-m;
while(n>m){
num=num*n;
n