上一页 1 ··· 4 5 6 7 8
摘要: 代码1: #include "stdafx.h" #include "iostream" #include "string" using namespace std; int main() { int a=5; cout<<&a<<endl; a=6; cout<<&a<<endl; int *p= 阅读全文
posted @ 2020-05-21 08:01 财盛 阅读(93) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h" #include "cstdio" #include "iostream" using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c>>d; int m=a; if(m>b) m=b; if(m>c) 阅读全文
posted @ 2020-05-21 08:00 财盛 阅读(95) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h" #include "cstdio" #include "iostream" using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c>>d; int m=a; if(m>b) m=b; if(m>c) 阅读全文
posted @ 2020-05-21 07:59 财盛 阅读(297) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> using namespace std; int main() { string mm,md; cout<<"一口咬掉牛尾巴(打一字),请猜:"<<endl; cin>>md; if (md=="告") cout<<"正确"; else cout<<"错了"; 阅读全文
posted @ 2020-05-20 16:06 财盛 阅读(425) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8