问题描述
问题分析
找规律题目
问5的n次方后两位是多少
嗯……
好水……
1
2
3
4
5
6
7
8
9
10
11
12
| #include<stdio.h>
#include<string.h>
int main() {
char s[100];
while(scanf("%s",s)!=EOF) {
if(strcmp(s,"1")==0)
printf("5\n");
else
printf("25\n");
}
return 0;
}
|
题目地址:【CodeForces】[630A]Again Twenty Five!