初学C++
#include<iostream>
int main()
{std::cout << "Enter two numbers:" << std::endl;int v1 = 0, v2 = 0;std::cin >> v1 >> v2;std::cout << "The sum of "<< v1 << " and " << v2<< " is " << v1 + v2 << std::endl;return 0;
}
:: 是作用域运算符,C++把输入输出写在一个标准库文件中,但凡调用其里面的东西,皆需要显式说明该东西来自说标准库文件,所以上面输入cin,输出cout,endl前面都写了其所属std。 那么问题就来,写这么多std不累吗?解决如下:using namespace std;
#include<iostream>
using namespace std;int main()
{cout << "Enter two numbers:" << :endl;int v1 = 0, v2 = 0;cin >> v1 >> v2;cout << "The sum of "<< v1 << " and " << v2<< " is " << v1 + v2 << endl;return 0;
}
这样我们就可以搞事情了,输入两个数字,感受一下加法,值得注意的是,两数字之间采用空格隔开。