| 
 | 
вернуться в форумWhy "Compilation error"? Послано  Jimbo 14 июн 2015 09:34 #include <iostream> #include <vector> #include <cmath>     using std::cout; using std::cin; using std::vector; using std::endl;     int _tmain(int argc, _TCHAR* argv[]) {     long long number;     vector <long long> s;     while (cin >> number)     {         s.push_back(number);     }     for (int i = s.size() - 1; i >= 0; --i)     {         cout << sqrt((long double)s[i]) << endl;     }     return 0; }   uyyuzk-abb69e.cpp(12) : error C2061: syntax error : identifier '_TCHAR'   Edited by author 14.06.2015 09:40  |  
  | 
|