07 2024 档案
摘要:#include <bits/stdc++.h> using namespace std; int main(){ freopen("mz.txt","r",stdin); freopen("out.txt","w",stdout); string n; int a=0,m[7],j; cin>>n
阅读全文
摘要:#include <bits/stdc++.h> using namespace std; int main(){ int a,b,t; cin>>a; char n; b=2*(a-1)+1; for(int i=1;i<=a;i++){ cout<<setw(b-i); t=64; for(in
阅读全文
摘要:using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.
阅读全文
摘要:#include <bits/stdc++.h> using namespace std; int jc(int a){ if(a<=2){ return a; } return jc(a-1)*a;; } int jch(int n){ int sum=0; if(n<=1){ return n;
阅读全文
摘要:#include <bits/stdc++.h> using namespace std; int main(){ int n,sum=0; cin>>n; vector<int> b; b.push_back(1); for(int i=2;i<=n;i++){ for(int j=0;j<b.s
阅读全文