singlepost

Работает ли этот код в VS 2008? << На главную или назад  

Люди.. кого не затруднит.. проверьте пожалуйста. работает ли этот код в среде Visual Studio 2008… Сам я не могу проверить.. программа запрашивает регистрационный ключ… а страница регистрации никак не грузится…

#include <iostream>
#include <iomanip>
#include <math.h>
using namespace std;
int main()
{
float a,b,c,d;
float x1,x2;
cout << setw(12);
cout << setprecision(4);
cout << "Vvedite a, b & c:\n";
cin >> a;
cin >> b;
cin >> c;
cout << "Kvadratnoe uravnenie imeet vid:\n";
cout << a << "x^2+" << b << "x+" << c << "=0\n";
d=b*b-4*a*c;
cout << "\nDiskremenant raven: " << d << "\n";
cout.setf(ios::scientific);
cout << setiosflags(ios::left);
cout.width(12);
if (d>=0)
{
x1=(-b+sqrt(d))/2*a;
cout << "\nx1=" << x1 << "\n";
x2=(-b-sqrt(d))/2*a;
cout << "x2=" << x2 << "\n";
cout << "Vyvod otveta v shestnadcaterich'noj sisteme\n";
cout << hex << "\nx1=" << x1 << "\n";
cout << hex << "x2=" << x2;
}
else
{
cout << "\nUravnenie ne imeet kornei\n";
}
return 0;
}

23 ответов в теме “Работает ли этот код в VS 2008?”

  1. 8
    Можете Удалять ответил:

    спасибо большое…
    да я все равно ничего не понимаю, что компилятор выдает… только в конце надпись… ERROR…
    … ВЫ МНЕ ОЧЕНЬ ПОМОГЛИ ТАК КАК Я И ТАК ВСЕ ОПЕРАТОРЫ НЕ ЗНАЮ… ДА И РАБОТАЮ НА NETBEANS В MAC OS…

    ЕЩЕ РАЗ СПАСИБО….

  2. 7
    Евгений Гаврин ответил:

    Я вот одного понять не могу – ктотут лох. Опоссум непонятно из какой *опы свои ошибки выс*авший ( Может просто шутка неудачная? ). Или Эмин который не удосужился прочитать тест ошибок скинутых ему.

    Проект нормально компилиться.

    1>—— Build started: Project: test, Configuration: Debug Win32 ——
    1>Compiling…
    1>test.cpp
    1>Build log was saved at "file://d:\_work\Study\Cpp\test\test\Debug\BuildLog.htm"
    1>test – 0 error(s), 0 warning(s)
    ========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========

  3. 6
    Алексей Бозняков ответил:

    всё компилируется.
    2 дикий опоссум Хы ты кажись вообще не то компилирвал или не то скоприровал. при чем здесь гудвин.К
    psps всё работает. проверил на gcc 4.3

  4. 5
    Можете Удалять ответил:

    ЖЕСТЬ… ПЛИН…
    а NETBEANS без ошибок все выводит….
    ЧЕРТОВА СТРАНИЦА РЕГИСТРАЦИИ…

  5. 4
    Илья Коровер ответил:

    :) )

  6. 3
    Лёха Воронин ответил:

    нет. не компилироваться(((
    вот код ошибок:

  7. 2
    Лёха Воронин ответил:

    1>—— Build started: Project: exploit, Configuration: Debug Win32 ——
    1>Compiling…
    1>exploit.cpp
    1>f:\cygwin\include\sys\_types.h(15) : error C2144: syntax error : '__int64' should be preceded by ';'
    1>f:\cygwin\include\sys\_types.h(15) : error C4430: missing type specifier – int assumed. Note: C++ does not support default-int
    1>f:\cygwin\include\sys\_types.h(34) : error C4980: '__value' : use of this keyword requires /clr:oldSyntax command line option
    1>f:\cygwin\include\sys\_types.h(34) : error C2059: syntax error : '__value'
    1>f:\cygwin\include\sys\reent.h(599) : error C2144: syntax error : 'unsigned __int64' should be preceded by ';'
    1>f:\cygwin\include\sys\reent.h(599) : error C4430: missing type specifier – int assumed. Note: C++ does not support default-int
    1>f:\cygwin\include\sys\types.h(109) : error C2371: 'time_t' : redefinition; different basic types
    1>d:\program files\microsoft visual studio 9.0\vc\include\crtdefs.h(582) : see declaration of 'time_t'
    1>f:\cygwin\include\stdlib.h(63) : error C2733: second C linkage of overloaded function 'atexit' not allowed
    1>f:\cygwin\include\stdlib.h(63) : see declaration of 'atexit'
    1>d:\program files\microsoft visual studio 9.0\vc\include\exception(83) : error C2733: second C linkage of overloaded function 'strlen' not allowed
    1>d:\program files\microsoft visual studio 9.0\vc\include\exception(83) : see declaration of 'strlen'
    1>d:\program files\microsoft visual studio 9.0\vc\include\cwchar(16) : error C2371: '_Mbstatet' : redefinition; different basic types
    1>d:\program files\microsoft visual studio 9.0\vc\include\yvals.h(821) : see declaration of '_Mbstatet'
    1>d:\program files\microsoft visual studio 9.0\vc\include\cwchar(21) : error C2371: '_Mbstatet' : redefinition; different basic types
    1>d:\program files\microsoft visual studio 9.0\vc\include\yvals.h(821) : see declaration of '_Mbstatet'
    1>d:\program files\microsoft visual studio 9.0\vc\include\cwchar(28) : error C2039: 'tm' : is not a member of '`global namespace''
    1>d:\program files\microsoft visual studio 9.0\vc\include\cwchar(28) : error C2873: 'tm' : symbol cannot be used in a using-declaration
    1>d:\program files\microsoft visual studio 9.0\vc\include\cwchar(31) : error C2039: 'fgetwc' : is not a member of '`global namespace''
    1>d:\program files\microsoft visual studio 9.0\vc\include\cwchar(31) : error C2873: 'fgetwc' : symbol cannot be used in a using-declaration

  8. 1
    Лёха Воронин ответил:

    и остальные не поместились…

Клуб программистов работает уже ой-ой-ой сколько, а если поточнее, то с 2007 года.