#include<cstdlib>
#include<iostream>
int main()
{
int v1 = 2, v2 = 3;
/*the file include more Five values
are needed to create a graphical representation of /**/
a candlestick item*/
std::cout << "The sum of:" << v1 ;
/*std::cout */<< " and " << v2;
std::cout<< " is " << v1 + v2 << std::endl;
system("pause");
return 0;
}
error C2065: 'a' : undeclared identifier //a未定义
error C2146: syntax error : missing ';' before identifier 'candlestick'//语句缺少结束符
warning C4138: '*/' found outside of comment//注释缺少部分