#include
#include
#include
using namespace std;
int main()
{
//由zjh20195原创禁止抄袭代码
char a[101];
string as;
cin>>as;
for(int i=0;iShellExecute(NULL, _T("open"), _T(a), NULL, NULL, SW_SHOWNORMAL);
return 0;
}
一定要采纳我好不容易才弄好的
楼下均有BUG
#include
#include
using namespace std;
int main()
{
wchar_t url[128];
wcin>>url;
//不指定浏览器,用系统缺省的浏览器打开不是更好吗?
ShellExecute(0, L"open", L"",url, NULL, SW_SHOW);
system("pause");
return 0;
}
为什么不能填字符串,我刚试了一下,我的可以填字符串啊。。。
(我的编译器的原因,用的是宽字符,应该无所谓。)
#include
#include
using namespace std;
int main()
{
wchar_t url[128];
wcin>>url;
ShellExecute(0, L"open", L"C:\\Program Files\\Internet Explorer\\iexplore.exe",url, NULL, SW_SHOW);
system("pause");
return 0;
}
尴尬……
#include
#include
#include
using namespace std;
string s;
int main()
{
cout<<"请输入想打开的网站:";
cin>>s;
ShellExecute(NULL,"open",s.c_str(),NULL,NULL,SW_SHOW);
system("pause");
return 0;
}
//这个比你们的好多了