0
Visual Studio 2017でコードを選択してコメントします。私はCTRL + K、Cを使用することができます知っているが、結果は次のとおりです。Visual Studioのコメントスタイル2017
/*fstream in("c:\\users\\hp\\documents\\visual studio 2017\\projects\\inputfile.in");
if (!in)
{
cerr << "can't open input file\n";
return 1;
}
fstream out("outputfile.out", fstream::out);
if (!out)
{
cerr << "can't open output file\n";
return 1;
}*/
と私が実際に欲しいのは、私がこれを行うにはどうすればよい
//fstream in("c:\\users\\hp\\documents\\visual studio 2017\\projects\\inputfile.in");
//if (!in)
//{
// cerr << "can't open input file\n";
// return 1;
//}
//fstream out("outputfile.out", fstream::out);
//if (!out)
//{
// cerr << "can't open output file\n";
// return 1;
//}
のですか?
私はインターネットを検索しましたが、この質問に対する答えは見つかりませんでした。