はじめに
この実験では、C++ プログラミング言語を使って与えられた数の階乗を求める方法を学びます。数学において、正の整数 n の階乗は n! と表され、n 以下のすべての正の整数の積になります。
Skills Graph
%%%%{init: {'theme':'neutral'}}%%%%
flowchart RL
cpp(("C++")) -.-> cpp/SyntaxandStyleGroup(["Syntax and Style"])
cpp(("C++")) -.-> cpp/BasicsGroup(["Basics"])
cpp(("C++")) -.-> cpp/ControlFlowGroup(["Control Flow"])
cpp(("C++")) -.-> cpp/IOandFileHandlingGroup(["I/O and File Handling"])
cpp(("C++")) -.-> cpp/StandardLibraryGroup(["Standard Library"])
cpp/BasicsGroup -.-> cpp/variables("Variables")
cpp/BasicsGroup -.-> cpp/strings("Strings")
cpp/ControlFlowGroup -.-> cpp/for_loop("For Loop")
cpp/IOandFileHandlingGroup -.-> cpp/output("Output")
cpp/IOandFileHandlingGroup -.-> cpp/user_input("User Input")
cpp/StandardLibraryGroup -.-> cpp/math("Math")
cpp/SyntaxandStyleGroup -.-> cpp/comments("Comments")
cpp/SyntaxandStyleGroup -.-> cpp/code_formatting("Code Formatting")
subgraph Lab Skills
cpp/variables -.-> lab-96131{{"与えられた数の C++ による階乗プログラム"}}
cpp/strings -.-> lab-96131{{"与えられた数の C++ による階乗プログラム"}}
cpp/for_loop -.-> lab-96131{{"与えられた数の C++ による階乗プログラム"}}
cpp/output -.-> lab-96131{{"与えられた数の C++ による階乗プログラム"}}
cpp/user_input -.-> lab-96131{{"与えられた数の C++ による階乗プログラム"}}
cpp/math -.-> lab-96131{{"与えられた数の C++ による階乗プログラム"}}
cpp/comments -.-> lab-96131{{"与えられた数の C++ による階乗プログラム"}}
cpp/code_formatting -.-> lab-96131{{"与えられた数の C++ による階乗プログラム"}}
end