初学c++总是提示各种错误,用的是visualstudio2013,怎么修改?求解答!!!
代码如下:#include"stdafx.h"#include<iostream>usingnamespacestd;intmain(){intsum;for(inti=...
代码如下:
#include "stdafx.h"
#include<iostream>
using namespace std;
int main()
{
int sum;
for (int i = 1, int sum = 0; i <= 100; sum += i, i++);
cout << "1到100的和是:" <<sum<< endl;
}
错误提示:1>------ 已启动生成: 项目: ConsoleApplication4, 配置: Debug Win32 ------
1> 源.cpp
1>d:\kc\consoleapplication4\consoleapplication4\源.cpp(7): error C2062: 意外的类型“int”
1>d:\kc\consoleapplication4\consoleapplication4\源.cpp(7): warning C4552: “<=”: 运算符不起任何作用;应输入带副作用的运算符
1>d:\kc\consoleapplication4\consoleapplication4\源.cpp(7): error C2143: 语法错误 : 缺少“;”(在“)”的前面)
========== 生成: 成功 0 个,失败 1 个,最新 0 个,跳过 0 个 ==========
只有四个财富值了给不了了。 展开
#include "stdafx.h"
#include<iostream>
using namespace std;
int main()
{
int sum;
for (int i = 1, int sum = 0; i <= 100; sum += i, i++);
cout << "1到100的和是:" <<sum<< endl;
}
错误提示:1>------ 已启动生成: 项目: ConsoleApplication4, 配置: Debug Win32 ------
1> 源.cpp
1>d:\kc\consoleapplication4\consoleapplication4\源.cpp(7): error C2062: 意外的类型“int”
1>d:\kc\consoleapplication4\consoleapplication4\源.cpp(7): warning C4552: “<=”: 运算符不起任何作用;应输入带副作用的运算符
1>d:\kc\consoleapplication4\consoleapplication4\源.cpp(7): error C2143: 语法错误 : 缺少“;”(在“)”的前面)
========== 生成: 成功 0 个,失败 1 个,最新 0 个,跳过 0 个 ==========
只有四个财富值了给不了了。 展开
1个回答
展开全部
#include "stdafx.h"
#include<iostream>
using namespace std;
int main()
{
int sum = 0;
for (int i = 1;i <= 100;i++)
{
sum += i;
}
cout << "1到100的和是:" <<sum<< endl;
}
更多追问追答
追问
我现在看的c++的书是基于VC++6.0的,好像不太合适,能推荐一本适用于vs2013的c++的书吗?
追答
其实看什么书和用什么工具,关系不是很大。目前的教材一般都是基于VC++6.0 的。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询