
01.04.2008, 20:18
|
|
Leaders of Antichat - Level 4
Регистрация: 16.01.2006
Сообщений: 1,966
С нами:
10692266
Репутация:
3486
|
|
Сообщение от GlOFF
.Slip
Ну а что ты подскажешь нам про "cin >>"...
Мдa.
PHP код:
#include <iostream>
#include <string>
using namespace std;
int main()
{
char str[256];
do
{
cout << "Input word for reverce, please:" << endl;
cin >> str;
cout << "Reverted word:\n" << _strrev(str) << "\n\n";
continue;
}
while(true);
}
Сообщение от Студия 2008
1>------ Build started: Project: 4, Configuration: Debug Win32 ------
1>Compiling...
1>12.cpp
1>Linking...
1>Embedding manifest...
1>Build log was saved at "file://c:\Documents and Settings\Admin\Рабочий стол\C++\4\4\Debug\BuildLog.htm"
1>4 - 0 error(s), 0 warning(s)
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========
Последний раз редактировалось .Slip; 01.04.2008 в 20:20..
|
|
|