MCPcopy Create free account
hub / github.com/E869120/math-algorithm-book / main

Function main

codes/cpp/Code_2_01_2.cpp:4–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2using namespace std;
3
4int main() {
5 int A[4];
6 cin >> A[1] >> A[2] >> A[3]; // 入力部分
7 cout << A[1] + A[2] + A[3] << endl; // 出力部分
8 return 0;
9}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected