Input and Output

Sort by

recency

|

761 Discussions

|

  • + 0 comments

    Came back and challenged my self to put it in a variable.

    int main() { int a,b,c;

    cin>>a>>b>>c;
    int Result = a+b+c;
    cout << Result;
    return 0;
    

    }

  • + 0 comments

    include

    using namespace std; int main (){ int a,b,c; cout << " please enter teh three number between one and one thousand"; cin >> a >>b >>c ; if (1<= a & 1<= b & 1<= c & a <= 1000 & b <= 1000 & c <= 1000 ) { cout << " result is " << (a+b+c); } else { cout<< " please enter the correct numbers" ; } return 0; }

  • + 0 comments

    [CapCut](https://capcut apk )

    int main() { int a,b,c,sum; cin>>a>>b>>c; sum=a+b+c; cout<

  • + 0 comments

    [CapCut](https://capcut apk )

    int main() { int a,b,c,sum; cin>>a>>b>>c; sum=a+b+c; cout<

  • + 0 comments

    include

    include

    using namespace std;

    int main() { int a,b,c,sum; cin>>a>>b>>c; sum=a+b+c; cout< return 0; }