码迷,mamicode.com
首页 > 编程语言 > 详细

c++ math 2^n

时间:2018-11-26 02:07:59      阅读:292      评论:0      收藏:0      [点我收藏+]

标签:noip   using   div   logs   c++   htm   size   blog   ref   

2^n

输出2^n。

代码:

#include<iostream>
using namespace std;
unsigned long long n=1,m=0;
int main(){
        while(m<64){
            cout<<"2^"<<m<<"="<<n<<endl;
            m++;
            n*=2;
        }
    return 0;
}

返回目录

 

c++ math 2^n

标签:noip   using   div   logs   c++   htm   size   blog   ref   

原文地址:https://www.cnblogs.com/shnoip-andyzhu/p/10017983.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!