Home > Net >  Can I give auto input in VSCode and not have to type input every time
Can I give auto input in VSCode and not have to type input every time

Time:02-06

Generally we need to type the input after running any file where we have std::cin, like the C code in below

#include <iostream>
using namespace std;
int main()
{
    // your code goes here
    int t;
    cin >> t;
}

I just don't like to enter the same input every time. So I want to automate this process for the same input, say I save my input in a file called input.txt and after running the file, it should take the input from input.txt and output the results. Of course saving input to the clipboard is one way but I might want to copy other things while coding and copy-pasting is itself is again one small job.

I use VS code editor in windows and run code in terminal extension.

CodePudding user response:

Yes, you can give auto input in VSCode and not have to type input every time. To do this, you can redirect the input from a file, in your case input.txt, to the terminal. For example, if your source file named "program.cpp", you can run it in the terminal with the following command:

g   program.cpp -o program
program < input.txt

This will take the input from input.txt and use it as the input for your program. The output will be displayed in the terminal.

CodePudding user response:

The solution is to learn to use your shell. I’m assuming a Unix-like shell here.

Type all of your inputs into a file as you would enter them while the program is running. Save it.

When you run your program, use the command a.out < input.txt. Substitute the appropriate names, obviously.

Your program will read the inputs from the file as if they had been typed in.

Note that because nothing was actually typed in, your formatting might look a bit off, but it’s not a big deal compared to the time you’re saving in running your tests.

CodePudding user response:

You could use, following function inside your main function

int main() {
freopen('input.txt', 'r', stdin);
freopen('output.txt', 'w', stdout); //if you want to save output to a file.
/*
... your code 
*/
}
  • Related