Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Input/Output. #1

Open
atarax665 opened this issue Sep 27, 2020 · 1 comment
Open

Add Input/Output. #1

atarax665 opened this issue Sep 27, 2020 · 1 comment
Labels

Comments

@atarax665
Copy link
Owner

atarax665 commented Sep 27, 2020

Add Sample Input/ Output for all the cases at the end of the program in commented form.

Example:

// A program to add two numbers a and b

#include<iostream>

int main()
{
int a, b;
cout << "Enter the numbers a and b :" << endl;
cin>>a>>b;
cout << a << "   " << b << " = " << a b;
return 0;
}

/*
Sample I/O:

Input :
Enter the numbers a and b :
10 12
Output :
10   12 = 22
*/
@atarax665 atarax665 added the good first issue Good for newcomers label Sep 27, 2020
@up4154
Copy link

up4154 commented Oct 22, 2021

Can you assign this to me?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants