Here we go Ale Ale..
2024-01-25 18:51:45
发布于:广东
13阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
void today(int n, int m){
long long sum = 1;
for(int i = 0; i < m; i++){
sum *= n;
sum %= 7;
}
cout << sum;
}
int main(){
int n, m;
cin >> n >> m;
today(n, m);
return 0;
}
这里空空如也
有帮助,赞一个