上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 18 下一页
摘要: #include <iostream> using namespace std; void cfb(int a,int b){ if(a<=9){ if(b<=a){ cout<<b<<"x"<<a<<"="<<a*b<<" "; cfb(a,b+1); }else{ cout<<endl; cfb 阅读全文
posted @ 2023-09-03 09:01 爱吃泡面的皮卡 阅读(19) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; int main(){ int t,a[4]; for(int i=1;i<=3;i++){ cin>>a[i]; } for(int i=1;i<=2;i++){ for(int j=1;j<=3-i;j++){ i 阅读全文
posted @ 2023-08-12 10:29 爱吃泡面的皮卡 阅读(16) 评论(0) 推荐(0)
摘要: #include <iostream> #include <iomanip> using namespace std; int row=16; int col=16; bool black=true; int all[17][17]; void F5(){ for(int ii=0;ii<=col; 阅读全文
posted @ 2023-08-10 20:32 爱吃泡面的皮卡 阅读(35) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h>#include <windows.h>#define huang return#define da 0#define shan ;#define Min 10 using namespace std;int a[11][11], a2[11], a3 阅读全文
posted @ 2023-08-10 09:52 爱吃泡面的皮卡 阅读(66) 评论(0) 推荐(0)
摘要: #include <iostream> #include <iomanip> using namespace std; int main(){ int c,d,h,s,u,t; char f; cout<<"请输入棋盘的大小"<<endl; cin>>c>>d; cout<<"请输入棋子的坐标"<< 阅读全文
posted @ 2023-08-08 20:29 爱吃泡面的皮卡 阅读(24) 评论(0) 推荐(0)
摘要: #include <iostream> #include <cstdio> using namespace std; int main(){ char chl[1000],ch2; int num[26],i,k; for(i=0;i<26;i++){ num[i]=0; } gets(chl); 阅读全文
posted @ 2023-08-07 09:39 爱吃泡面的皮卡 阅读(14) 评论(0) 推荐(0)
摘要: #include<iostream> using namespace std; int main(){ int n,a[100]={},x=0,Max=0; cin>>n; for(int i=1;i<=n;i++){ if(n%i==0){ a[x]=i; cout<<a[x] ; x++; } 阅读全文
posted @ 2023-08-07 08:27 爱吃泡面的皮卡 阅读(39) 评论(0) 推荐(0)
摘要: #include<iostream> #include<cstdio> #include<cstring> using namespace std; int x,y,z; int a(int z){ if(z<x+2){ return 1; } return a(z-1)+a(z-x-2)*y;// 阅读全文
posted @ 2023-08-03 20:07 爱吃泡面的皮卡 阅读(70) 评论(0) 推荐(0)
摘要: #include <iostream> #include <string> #include "minecraft.h" #include <Windows.h> using namespace std; TxMinecraft mc; int main(int argc, char** argv) 阅读全文
posted @ 2023-08-03 09:54 爱吃泡面的皮卡 阅读(60) 评论(0) 推荐(0)
摘要: #include<iostream> using namespace std; int main(){ int n,j=1,sum=0,data=1; cin>>n; for(int i=1;i<=n;i++){ sum+=data; if(i==j){ data++; j+=data; } } c 阅读全文
posted @ 2023-08-02 09:30 爱吃泡面的皮卡 阅读(80) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 18 下一页