摘要:
B. Buttons time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Manao is trying to open a rath 阅读全文
摘要:
寻找并输出11~999之间的数m,它满足m、m2和m3均为回文数。 l 回文:各位数字左右对称的整数。 l 例如:11满足上述条件 n 112=121,113=1331。 #include<iostream> using namespace std; int circle(int x) { int 阅读全文
摘要:
#include using namespace std; double power(double x, int n) { double vie = 1.0; while (n--) { vie *= x; } return vie; } double arctan(double x) { int i = 1; dou... 阅读全文
摘要:
C. Registration system time limit per test 5 seconds memory limit per test 64 megabytes input standard input output standard output C. Registration sy 阅读全文