博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
杭电1061 Rightmost Digit
阅读量:5371 次
发布时间:2019-06-15

本文共 695 字,大约阅读时间需要 2 分钟。

Problem Description
Given a positive integer N, you should output the most right digit of N^N.
 
Input
The input contains several test cases. The first line of the input is a single integer T which is the number of test cases. T test cases follow. Each test case contains a single positive integer N(1<=N<=1,000,000,000).
 
Output
For each test case, you should output the rightmost digit of N^N.
 
Sample Input
2 3 4
#include
using namespace std;int main(){ long long int n; int i; int T; cin>>T; int sum; while (T--) {cin>>n; int m=n; n=n%10; if(n==4)//4是偶数,所以只可能有偶数个4相乘。根据规律只有一个结果 6 cout<<6<

 

转载于:https://www.cnblogs.com/lp2012/p/3440259.html

你可能感兴趣的文章
ubuntu15.10运行android studio出错unable to run mksdcard sdk tool
查看>>
HashMap面试知多少
查看>>
Effective C# 学习笔记(二十七)使你的类型可被序列化
查看>>
LDAP客户端配置
查看>>
(转)NAT原理与NAT穿越
查看>>
13.内存原理
查看>>
24.函数信号机制(本质上就是函数指针)
查看>>
The dependency `xxx` is not used in any concrete target.
查看>>
Bootstrap 中 下拉菜单和滚动监听插件(十一)(持续更新中。。。)
查看>>
团队-科学计算器-项目总结
查看>>
python 发邮件
查看>>
[Codeforces Round #247 (Div. 2)] A. Black Square
查看>>
[HDU] 1285 确定比赛名次(拓扑排序)
查看>>
UML第四次作业:绘制活动图
查看>>
GOOGLE API - 翻译, 后台c# 调用前台js代码, asp.net后台调用js代码
查看>>
JVM内存的设置
查看>>
HBase API 基础操作
查看>>
【洛谷4920】[WC2015] 未来程序(提答题)
查看>>
1003. Check If Word Is Valid After Substitutions
查看>>
PHP与最丑的后台管理系统
查看>>