码迷,mamicode.com
首页 > 其他好文 > 详细

快速幂模板

时间:2017-04-06 22:46:30      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:str   stream   names   ios   amp   nbsp   int   span   out   

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cmath>
 4 using namespace std;
 5 int f(int x,int n)
 6 {
 7     int now=1;
 8     while(n)
 9     {
10         if(n&1)
11         {
12             now=now*x;
13         }
14         x=x*x;
15         n>>=1;
16     }
17     return now;
18 }
19 int main()
20 {
21     int x,n;
22     cin>>x>>n;
23     cout<<f(x,n);
24     return 0;
25 }

 

快速幂模板

标签:str   stream   names   ios   amp   nbsp   int   span   out   

原文地址:http://www.cnblogs.com/zwfymqz/p/6675322.html

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