COMP2113
COMP2113_ENGG1340 Programming technologies and Computer programming II [Section 2BC] [2023]
Loading...
Searching...
No Matches
assign.cpp File Reference
#include <iostream>
Include dependency graph for assign.cpp:

Go to the source code of this file.

Functions

int main ()
 

Function Documentation

◆ main()

int main ( void )

Definition at line 4 of file assign.cpp.

4 {
5 int a,b,c;
6 cin >> a;
7 cin >> b;
8 cin >> c;
9 cout << a+b+c << endl
10}