上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页
  2023年11月3日
摘要: #include <fstream> #include <iostream> using namespace std; int main(){ char data[10000]; cin>>data; cout<<data; ofstream wangyianbo; wangyianbo.open( 阅读全文
posted @ 2023-11-03 20:06 爱吃泡面的皮卡 阅读(5) 评论(0) 推荐(0) 编辑
  2023年10月29日
摘要: //指针 #include <bits/stdc++.h> using namespace std; int sum(int *a){ int b=*a-1,c=*a-2; if(*a<=2){ return 1; }else{ return sum(&b)+sum(&c); } } int mai 阅读全文
posted @ 2023-10-29 09:51 爱吃泡面的皮卡 阅读(5) 评论(0) 推荐(0) 编辑
摘要: //地址 #include <bits/stdc++.h> using namespace std; int sum(int &a){ int b,c; b=a-1; c=a-2; if(a<=2){ return 1; }else{ return sum(b)+sum(c); } } int ma 阅读全文
posted @ 2023-10-29 09:49 爱吃泡面的皮卡 阅读(2) 评论(0) 推荐(0) 编辑
摘要: //按值 #include <bits/stdc++.h> using namespace std; int sum(int a){ if(a<=2){ return 1; }else{ return sum(a-1)+sum(a-2); } } int main(){ int x,c,d; cin 阅读全文
posted @ 2023-10-29 09:47 爱吃泡面的皮卡 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> using namespace std; int main(){ int f[101],n; cin>>n; f[1]=1;f[2]=1; for(int i=3;i<=n;i++){ f[i]=f[i-1]+f[i-2]; } for(int i=1;i<=n 阅读全文
posted @ 2023-10-29 09:42 爱吃泡面的皮卡 阅读(8) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> using namespace std; int s(int n){ if(n<=2){ return 1; }else{ return s(n-1)+s(n-2); } } int main(){ int n; cin>>n; cout<<s(n); retu 阅读全文
posted @ 2023-10-29 09:41 爱吃泡面的皮卡 阅读(22) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; /*自定义函数必须在调用该函数之前声明, 声明时可以不写函数体,但在后面需要将 补充完整。按值传递的行参与调用类型一 致。*/ int sum(int a,int b){ int n=a+b; a=a+1; retur 阅读全文
posted @ 2023-10-29 09:02 爱吃泡面的皮卡 阅读(4) 评论(0) 推荐(0) 编辑
  2023年10月28日
摘要: #include <iostream> using namespace std; int main(){ int a=10; //声明指针p int *p; //将制作p指向变量a的内存地址 p=&a; cout<<"a的值="<<a<<endl; cout<<"a的内存地址="<<p<<endl; 阅读全文
posted @ 2023-10-28 09:47 爱吃泡面的皮卡 阅读(6) 评论(0) 推荐(0) 编辑
  2023年10月22日
摘要: #include<bits/stdc++.h> using namespace std; /*函数:r进制转换成10进制*/ int rToTen(string n,int r){ //将r进制转为10进制,n是该r进制的字符串表示 int len = n.length(); int ans = 0 阅读全文
posted @ 2023-10-22 09:24 爱吃泡面的皮卡 阅读(9) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; int main(){ string str; char t; bool jinwei=true; bool tf; cin>>str>>t; if(str[0]=='0'&&t=='f'){ cout<<str; } 阅读全文
posted @ 2023-10-22 08:42 爱吃泡面的皮卡 阅读(10) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页