はじめに
この実験では、C++ を使って簡単な電卓プログラムを作成します。このプログラムは、足し算、引き算、掛け算、割り算などの基本的な算術演算を行うために switch 文を使います。
Skills Graph
%%%%{init: {'theme':'neutral'}}%%%%
flowchart RL
cpp(("C++")) -.-> cpp/BasicsGroup(["Basics"])
cpp(("C++")) -.-> cpp/ControlFlowGroup(["Control Flow"])
cpp(("C++")) -.-> cpp/IOandFileHandlingGroup(["I/O and File Handling"])
cpp(("C++")) -.-> cpp/SyntaxandStyleGroup(["Syntax and Style"])
cpp/BasicsGroup -.-> cpp/variables("Variables")
cpp/ControlFlowGroup -.-> cpp/switch("Switch")
cpp/IOandFileHandlingGroup -.-> cpp/output("Output")
cpp/IOandFileHandlingGroup -.-> cpp/user_input("User Input")
cpp/IOandFileHandlingGroup -.-> cpp/files("Files")
cpp/SyntaxandStyleGroup -.-> cpp/comments("Comments")
cpp/SyntaxandStyleGroup -.-> cpp/code_formatting("Code Formatting")
subgraph Lab Skills
cpp/variables -.-> lab-96238{{"簡易電卓のプログラム"}}
cpp/switch -.-> lab-96238{{"簡易電卓のプログラム"}}
cpp/output -.-> lab-96238{{"簡易電卓のプログラム"}}
cpp/user_input -.-> lab-96238{{"簡易電卓のプログラム"}}
cpp/files -.-> lab-96238{{"簡易電卓のプログラム"}}
cpp/comments -.-> lab-96238{{"簡易電卓のプログラム"}}
cpp/code_formatting -.-> lab-96238{{"簡易電卓のプログラム"}}
end