题解列表

筛选

恺撒密码 (C语言代码)

摘要:参考代码:(没优化)#include <stdio.h> #include <string.h> int main() { int t1=&#39;V&#39;-&#39;A&#39;,……

Manchester-求素数问题

摘要:解题思路:判断素数,除1 和 它本身外,有因子,则不是素数;注意事项:1既不是素数,也不是合数参考代码:#include <stdio.h> void out_put( int i ); ……