diff --git a/1799_01choesornot/Readme.md b/1799_01choesornot/Readme.md new file mode 100644 index 0000000..b4f8d75 --- /dev/null +++ b/1799_01choesornot/Readme.md @@ -0,0 +1,3 @@ +# 标题 + +* 内容 \ No newline at end of file diff --git a/1799_01choesornot/doc/Readme.md b/1799_01choesornot/doc/Readme.md new file mode 100644 index 0000000..b4f8d75 --- /dev/null +++ b/1799_01choesornot/doc/Readme.md @@ -0,0 +1,3 @@ +# 标题 + +* 内容 \ No newline at end of file diff --git a/1799_01choesornot/doc/鏍哥數绔欓棶棰.PNG b/1799_01choesornot/doc/鏍哥數绔欓棶棰.PNG new file mode 100644 index 0000000..41bde5e Binary files /dev/null and b/1799_01choesornot/doc/鏍哥數绔欓棶棰.PNG differ diff --git a/1799_01choesornot/main.cpp b/1799_01choesornot/main.cpp new file mode 100644 index 0000000..f39ad54 --- /dev/null +++ b/1799_01choesornot/main.cpp @@ -0,0 +1,6 @@ +#include + +int main() +{ + std::cout << "Hello Easy C++ project!" << std::endl; +} diff --git a/1799_01choesornot/main.exe b/1799_01choesornot/main.exe new file mode 100644 index 0000000..fc4df42 Binary files /dev/null and b/1799_01choesornot/main.exe differ diff --git a/1799_01choesornot/test/in.txt b/1799_01choesornot/test/in.txt new file mode 100644 index 0000000..e69de29 diff --git a/1799_01choesornot/test/out.txt b/1799_01choesornot/test/out.txt new file mode 100644 index 0000000..35a20e6 --- /dev/null +++ b/1799_01choesornot/test/out.txt @@ -0,0 +1,7 @@ +## z:\Chao\src\Template\test\in.txt +2020/03/14 周六 11:41:28.68 +Hello Easy C++ project! + +----------------------------------------------- +Process exited after 200 ms with return value 0 + diff --git a/1805_kclimb/Readme.md b/1805_kclimb/Readme.md new file mode 100644 index 0000000..b4f8d75 --- /dev/null +++ b/1805_kclimb/Readme.md @@ -0,0 +1,3 @@ +# 标题 + +* 内容 \ No newline at end of file diff --git a/1805_kclimb/doc/Readme.md b/1805_kclimb/doc/Readme.md new file mode 100644 index 0000000..b4f8d75 --- /dev/null +++ b/1805_kclimb/doc/Readme.md @@ -0,0 +1,3 @@ +# 标题 + +* 内容 \ No newline at end of file diff --git a/1805_kclimb/doc/k涓婂崌娈.PNG b/1805_kclimb/doc/k涓婂崌娈.PNG new file mode 100644 index 0000000..028af9b Binary files /dev/null and b/1805_kclimb/doc/k涓婂崌娈.PNG differ diff --git a/1805_kclimb/kclimb.cpp b/1805_kclimb/kclimb.cpp new file mode 100644 index 0000000..9439b39 --- /dev/null +++ b/1805_kclimb/kclimb.cpp @@ -0,0 +1,13 @@ +#include +using namespace std; +int main(){ + int n,k,f[21][21]={1}; + cin>>n>>k; + for(int i=1;i<=n;i++){ + for(int j=1;j<=i;j++){ + f[i][j]=f[i-1][j]+f[i-1][j-1]*j; + if(j==k) break; + } + } + cout< + +int main() +{ + std::cout << "Hello Easy C++ project!" << std::endl; +} diff --git a/1805_kclimb/main.exe b/1805_kclimb/main.exe new file mode 100644 index 0000000..fc4df42 Binary files /dev/null and b/1805_kclimb/main.exe differ diff --git a/1805_kclimb/test/In0 (4).txt b/1805_kclimb/test/In0 (4).txt new file mode 100644 index 0000000..397e89f --- /dev/null +++ b/1805_kclimb/test/In0 (4).txt @@ -0,0 +1 @@ +6 4 diff --git a/1805_kclimb/test/in.txt b/1805_kclimb/test/in.txt new file mode 100644 index 0000000..316bd14 --- /dev/null +++ b/1805_kclimb/test/in.txt @@ -0,0 +1 @@ +3 2 \ No newline at end of file diff --git a/1805_kclimb/test/out.txt b/1805_kclimb/test/out.txt new file mode 100644 index 0000000..4f172d1 --- /dev/null +++ b/1805_kclimb/test/out.txt @@ -0,0 +1,12 @@ +## z:\Chao\src\1805_kclimb\test\in.txt +2020/03/21 周六 18:00:22.81 +4 +----------------------------------------------- +Process exited after 160 ms with return value 0 + +## z:\Chao\src\1805_kclimb\test\In0 (4).txt +2020/03/21 周六 18:00:22.81 +240 +----------------------------------------------- +Process exited after 100 ms with return value 0 +