次方快速幂
#include<iostream>
using namespace std;
int main() {int a, b, c, ans 1;cin >> a >> b >> c;while(b) {if(b & 1) ans (ans * a) % c;a (a * a) % c;b >> 1;}cout << ans % c << endl;return 0;
}乘法取模
…
创建一个asp.net core项目,可以到到startup类有两个方法// This method gets called by the runtime. Use this method to add services to the container.public void ConfigureServices(IServiceCollection services)public void Configure(IApplicationBuilder a…
在上一个小系列文章《ASP.NET Core on K8S学习初探》中,通过在Windows上通过Docker for Windows搭建了一个单节点的K8S环境,并初步尝试将ASP.NET Core WebAPI项目部署到了K8S,把玩了一下快速部署和实例伸缩。这个系列开始,会继续学…