belfastqiu

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2025年2月15日

摘要: 这是入门篇的第一题 图1:题目图像 #include <stdio.h> int Mod(int n){ int a,b=2; // a是用来递归的 if(n==0) return 1; a = Mod(n-1); return ((a%1007)*(2%1007)) % 1007; } int m 阅读全文
posted @ 2025-02-15 16:13 Belfast_Qiu 阅读(76) 评论(0) 推荐(0)