0
已解决
张凌峰
新手光能
新手光能
题目描述 Description
输入一个整数n(1≤ n ≤100000),请你计算n个7相乘的最后一位数字。
输入描述 Input Description
一个整数n,1≤ n ≤100000
输出描述 Output Description
一个整数,表示n个7相乘的最后一位数字
样例输入 Sample Input
2
样例输出 Sample Output
9
0分,请帮忙看一下!
#include<bits/stdc++.h> using namespace std; int main() { int n,s; cin>>n; s=pow(7,n); cout<<s%10; return 0; }