如何在引号中加上引号(“”)?

时间:2018-09-03 10:40:17

标签: c++ cin cout ofstream

我无法创建.vbs文件,因为此“”无法将其放入“”。 有例子: batch <<“ echo x = msgbox(” <-在哪里,而引号阻止了最后一个。我如何使它起作用?

#include <iostream>
#include <fstream>

using namespace std;

int main()
{
    ofstream batch;
    batch.open("name.bat");
    batch<<"@echo off";
    batch<<"echo x=msgbox("Your Text Here" ,0, "Your Title Here") >> msgbox.vbs";
    batch<<
    batch.close();
    std::cin.get();
    return 0;
}

0 个答案:

没有答案