
08.11.2009, 14:45
|
|
Участник форума
Регистрация: 03.11.2009
Сообщений: 102
С нами:
8694700
Репутация:
22
|
|
рабочий код принимает значение которое ты введёш с клавы
#include "stdafx.h"
#include <iostream>
#include <string>
using namespace std;
int main ()
{
string s1 ;
cin>>s1;
cout << "url is: " << s1 << endl;
system("PAUSE");
return 0;
}
|
|
|