#include <windows.h> #include <iostream> #include <clocale> using namespace std;
int main() { class TestUrl{ public: string webUrl; TestUrl(){ setlocale(0,""); cout << "Введите адрес сайта" << endl; cin >> webUrl; ShellExecute(NULL, "open", webUrl.c_str(), NULL, NULL, SW_SHOWNORMAL); }
~TestUrl(){
}
};
TestUrl th;
getchar(); getchar();