はじめに
この実験では、C++ プログラミング言語で 2 つの数値を加算する基本プログラムを書く方法を学びます。また、C++ での変数宣言、初期化、入出力操作、および基本的な数学演算についても学びます。
Skills Graph
%%%%{init: {'theme':'neutral'}}%%%%
flowchart RL
cpp(("C++")) -.-> cpp/StandardLibraryGroup(["Standard Library"])
cpp(("C++")) -.-> cpp/BasicsGroup(["Basics"])
cpp(("C++")) -.-> cpp/IOandFileHandlingGroup(["I/O and File Handling"])
cpp/BasicsGroup -.-> cpp/variables("Variables")
cpp/BasicsGroup -.-> cpp/data_types("Data Types")
cpp/BasicsGroup -.-> cpp/operators("Operators")
cpp/BasicsGroup -.-> cpp/strings("Strings")
cpp/IOandFileHandlingGroup -.-> cpp/output("Output")
cpp/IOandFileHandlingGroup -.-> cpp/user_input("User Input")
cpp/IOandFileHandlingGroup -.-> cpp/files("Files")
cpp/StandardLibraryGroup -.-> cpp/math("Math")
subgraph Lab Skills
cpp/variables -.-> lab-96120{{"2 つの数を加算するプログラム"}}
cpp/data_types -.-> lab-96120{{"2 つの数を加算するプログラム"}}
cpp/operators -.-> lab-96120{{"2 つの数を加算するプログラム"}}
cpp/strings -.-> lab-96120{{"2 つの数を加算するプログラム"}}
cpp/output -.-> lab-96120{{"2 つの数を加算するプログラム"}}
cpp/user_input -.-> lab-96120{{"2 つの数を加算するプログラム"}}
cpp/files -.-> lab-96120{{"2 つの数を加算するプログラム"}}
cpp/math -.-> lab-96120{{"2 つの数を加算するプログラム"}}
end