上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页
  2023年7月31日
摘要: #include <iostream> using namespace std; int main(int argc, char** argv) { int a[10][10]; for(int i=1;i<=9;i++){ for(int j=1;j<=i;j++){ a[i][j]=i*j; c 阅读全文
posted @ 2023-07-31 08:55 爱吃泡面的皮卡 阅读(12) 评论(0) 推荐(0) 编辑
  2023年7月28日
摘要: #include <iostream> using namespace std; int a(int n){ if(n==4){ cout<<"4,5-->9,10"<<endl; cout<<"8,9-->4,5"<<endl; cout<<"2,3->8,9"<<endl; cout<<"7,8 阅读全文
posted @ 2023-07-28 19:58 爱吃泡面的皮卡 阅读(8) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; int a(int n){ if(n<=2){ return 1; } return a(n-1)+a(n-2);//a(n-1)*n } int main(int argc, char** argv) { syste 阅读全文
posted @ 2023-07-28 19:44 爱吃泡面的皮卡 阅读(6) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include<iostream> #include <iomanip> using namespace std; int main(){ int data[9][9]; int i=0; int j=0; for(i=0;i<9;i++){ for (j=0 阅读全文
posted @ 2023-07-28 18:41 爱吃泡面的皮卡 阅读(5) 评论(0) 推荐(0) 编辑
  2023年7月26日
摘要: #include <iostream> using namespace std; int main(int argc, char** argv) { int n,b,c; cin>>n; int a[n]; for(int i=0;i<n;i++){ cin>>a[i]; } for(int i=0 阅读全文
posted @ 2023-07-26 19:24 爱吃泡面的皮卡 阅读(8) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <cmath> using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input 阅读全文
posted @ 2023-07-26 09:09 爱吃泡面的皮卡 阅读(45) 评论(0) 推荐(0) 编辑
  2023年7月24日
摘要: //字符串的展开 #include <bits/stdc++.h> using namespace std; int p1,p2,p3; string S,Ans; char ToChar(char ch){ if(p1==3){ return '*'; } return p1==1?tolower 阅读全文
posted @ 2023-07-24 19:59 爱吃泡面的皮卡 阅读(83) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include "minecraft.h"#include "Windows.h"TxMinecraft mc;using namespace std;int X,Y,Z,id=0,data=0;int a=0;void chu_shi_hua() { X=4 阅读全文
posted @ 2023-07-24 09:40 爱吃泡面的皮卡 阅读(71) 评论(0) 推荐(0) 编辑
  2023年7月22日
摘要: #include <iostream> using namespace std; int main(int argc, char** argv) { char n[8]; int b=0; for(int i=0;i<8;i++){ cin>>n[i]; } for(int i=0;i<8;i++) 阅读全文
posted @ 2023-07-22 08:42 爱吃泡面的皮卡 阅读(9) 评论(0) 推荐(0) 编辑
  2023年7月21日
摘要: #include <bits/stdc++.h> using namespace std; int main(int argc, char** argv) { int N,x,y,X,Y; cin>>N; for(int k=0;k<N;k++){ int m=0,c=0,count=0; stri 阅读全文
posted @ 2023-07-21 20:15 爱吃泡面的皮卡 阅读(14) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页