We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- C++
- Introduction
- Input and Output
- Discussions
Input and Output
Input and Output
Sort by
recency
|
754 Discussions
|
Please Login in order to post a comment
int main() {
int a,b,c; cin>>a>>b>>c; cout<<(a+b+c); return 0; }
int main() { int a,b,c,sum; cin>>a>>b>>c; sum=a+b+c; cout<
i have been facing the same issue on my site Horas Espejo but i install this to get rid of problem using namespace std; int sum(int a, int b , int c){ return a+b+c; }
int main() { int a; int b; int c; cin>>a >>b >> c; cout <
this is my c++ code but idk why it's still saying wrong
include
using namespace std;
int a,b,c, sum; int main(){ a= 1, b = 2, c = 7; sum = a+ b + c; cout<<"3 numbers: "<
}
My C++ code