Input and Output

Sort by

recency

|

767 Discussions

|

  • + 0 comments

    This is a great exercise for honing your C++ skills! Reading and writing to standard input/output is fundamental. It reminds me of trying to survive the night in Fnaf , where you have to constantly monitor inputs from the cameras and react accordingly. Good luck to everyone tackling this challenge; mastering these basics will definitely pay off!

  • + 0 comments

    int main() { int a,b,c ,sum=0; cout << "enter three number to get it's colliction" <>a>>b>>c; sum=a+b+c; cout <<"the sum = "< /* Enter your code here. Read input from STDIN. Print output to STDOUT */
    return 0; } * #

  • + 0 comments

    int main() { int a,b,c ,sum=0; cout << "enter three number to get it's colliction" <>a>>b>>c; sum=a+b+c; cout <<"the sum = "< /* Enter your code here. Read input from STDIN. Print output to STDOUT */
    return 0; }

  • + 0 comments

    include

    using namespace std;

    int main() { int x,y,z; cin>>x>>y>>z; cout< return 0; }

  • + 1 comment

    Here is Input and Output solution in c++ - https://programmingoneonone.com/hackerrank-input-and-output-solution-in-cpp.html