2024年9月16日

摘要: 先找到斜线的起始点 然后输出斜线上各点 include <bits\stdc++.h> typedef long long ll; using namespace std; int main() { int n,i,j,sum,cnt,x,y; cin>>n; int a[501][501]; in 阅读全文
posted @ 2024-09-16 11:56 lkhshnu 阅读(4) 评论(0) 推荐(0) 编辑
 
摘要: 常规质数因子 带相关资料抄写 稍加修改指数的筛选部分 include include<math.h> typedef long long ll; using namespace std; bool isprime(ll n){ int i; if(n<=1) return false; int sq 阅读全文
posted @ 2024-09-16 10:50 lkhshnu 阅读(18) 评论(0) 推荐(0) 编辑