開發平台(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