摘要: 1 #include 2 3 using namespace std; 4 typedef long long ll ; 5 ll fun(ll x,ll y) 6 { 7 ll ans=1; 8 while(y) 9 { 10 if(y&1) 11 ans*=x; 12 x*=x; 13 ... 阅读全文
posted @ 2019-03-02 11:52 世子抱瑜玉 阅读(174) 评论(0) 推荐(0) 编辑