#include <iostream>
#include <fstream>
using namespace std;
int main()
{
string name;
cout<<"What would you like new html file to be named?"<<endl;
getline(cin,name);
cout<<"Creating New Html File...Moment."<<endl;
ofstream myfile (name);
if(myfile.is_open())
{
}
}
拡張子が.htmlのmyfileを作成する必要がありますか?ファイル名と拡張子の設定方法
この質問の内容は、再フォーマットする必要があります。 –
'main()'の前に 'int'が必要ないのですか? G ++は警告なしで許可しますが、-Wallを追加すると、「ISO C++は型のないmainの宣言を禁じます。 –