Using javascript
Given three integers A, B, and C, determine their sum.
Your task is to implement the function getSum(A, B, C) which
returns the sum A + B + C.
Constraints
1≤A,B,C≤100
function getSum(A, B, C) {
// Write your code here
return 0;
}
Using javascript Given three integers A, B, and C, determine their sum. Your task is to implement the function getSum(A,
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am