-
-
acjanchan.rar
... on each line, the value of n.
Output
If the minimum x exists, print a line with 2^x mod n = 1.
Print 2^? mod n = 1 otherwise.
You should replace x and n with specific numbers.
Sample Input
2
5
Sample Output
2^? ...
-
classPoint.rar
定义三维坐标的Point类。包含一个构造函数,一个拷贝构造函数,一个将点变为负值的函数negate(),一个返回该点到原点(0,0,0)距离的函数norm()和一个输出点坐标的函数print()。并定义一个静态数据成员记录创建点的个数。
-
-
print_screen.rar
It allows your PrtScr and Alt+PrtScr keys to
print a screen capture directly to your printer instead of just
copying the image to the Windows clipboard.
-
-
-
-
CSqlMakerTest.rar
一个vb开发,可以动态生成SQL的"拼装类".
例如:
sql.strsql="select ? from ? "
sql.setFieldEx "field1"
sql.setFieldEx "tbl"
debug.print sql.strsql
输出:select field from tbl
-
LimitedLabyrinth.rar
labyrinth: you need to find the doable way to go to the destinaton.And then print out the path.
-
cstring.rar
定义一个字符串类String,其私有成员为一个字符串指针。设计构造函数,拷贝构造函数,析构函数,设置新值函数Set, 打印成员值函数Print。借助此String类,将操作符"=="、">"、"<"的重载函数设置为String类的成员函数,实现对操作符"=="、">"、"<"的重载,使之能直接比较两个String类类型的字符串的大小,设计各种情况调用此三个重载操作符。
-