描述 Description
给出N个数字,试求质因数最大的数字。
输入格式 InputFormat
第一行,一个整数N,表示数字个数。
接下来N行,每行一个整数A_i,表示给出的数字。
输出格式 OutputFormat
一个整数,表示质因数最大的数字。
数据范围和注释 Hint
N
举例 38和12
38=19*2
12=2*3*3
...
分类:
其他好文 时间:
2014-07-22 23:01:52
阅读次数:
280
【Question】
Implement atoi to convert a string to an integer.
Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the p...
分类:
其他好文 时间:
2014-05-07 04:17:18
阅读次数:
259
Android下EditText中的字体不统一问题好久没写,今天心情好略记下解决的某bug在一个登录界面有帐号和密码两个EditText,但是却发现两个EditText的hint的英文字体不同,看着极不协调。但是两个EditText都没有特意设置过hint的字体啊···经实验,把密码栏的androi...
分类:
移动开发 时间:
2014-05-05 22:55:51
阅读次数:
483
扩展知识:EditText的android:hint设置EditText为空时输入框内的提示信息。android:gravity android:gravity属性是对该view
内容的限定.比如一个button 上面的text. 你可以设置该text 在view的靠左,靠右等位置.以button为...
分类:
移动开发 时间:
2014-04-29 19:15:47
阅读次数:
492
1、
??
String to Integer (atoi)
Implement atoi to convert a string to an integer.
Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yours...
分类:
其他好文 时间:
2014-04-29 13:22:22
阅读次数:
341