摘要:
先找到斜线的起始点 然后输出斜线上各点 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 阅读全文
2024年9月16日
摘要:
常规质数因子 带相关资料抄写 稍加修改指数的筛选部分 include include<math.h> typedef long long ll; using namespace std; bool isprime(ll n){ int i; if(n<=1) return false; int sq 阅读全文