Я уже создал CPP
программу для этого, которая создает множество файлов с Dev C ++ , в том числе с Dev C ++, но теперь она показывает ошибку.Мой code
специализируется на создании HTML
шаблонов, но показывает error
.
Это некоторые из моих code
:
#include <iostream>
using std::cout;
using std::cin;
using std::ofstream;
using std::endl;
void HelloWorld() {
ofstream outfile ("html1.html");
outfile << "<html> " << endl;
outfile << " <head> <title> Template Hello World </title> </head>" << endl;
outfile << " <body> <h1> Hello World! </h1> </body> " << endl;
outfile << "</html> " << endl;
outfile << "// Template HTML 2018 " << endl;
cout << "Created Succesfuly! Directory: Program's folder " << endl;
outfile.close();
}