探索C++6.0

来源:互联网 发布:用哪个软件刷机好 编辑:程序博客网 时间:2024/06/07 02:48
第一次接触c++6.0中的C++语言,看着还是有一点比C语言要高级点的地方。。。
#include <iostream>int main(){int value =2;int pow =10;int result =1;for (int cnt =0;cnt!=pow ;++cnt)result *= value ;std::cout <<value<<"raised to the power of "<<pow << ":\t"<<result <<std::endl;system("pause");return 0;}

0 0