#include <tchar.h>
#include <Windows.h>
#include <iostream>
using namespace std;
int main()
{
char w[101];
string web;
cin >> web; //输入网址
for (int i = 0; i < web.length(); i++)
{
w[i] = web[i];
}
ShellExecute(NULL, _T("open"), _T(w), NULL, NULL, SW_SHOWNORMAL);
return 0;
}
02-10
9万+

09-12
07-07
1417

09-13
“相关推荐”对你有帮助么?
-
非常没帮助
-
没帮助
-
一般
-
有帮助
-
非常有帮助
提交