摘要: #include using namespace std; int main(){ int i,j; for(i=1;i<=60;i++){ for(j=1;j<=50;j++){ cout<<"*"; } cout<<endl; } } 阅读全文
posted @ 2017-11-04 20:14 TOTO2 阅读(136) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> using namespace std; int main() { cout<<(6&3)<<endl; return 0; } 阅读全文
posted @ 2017-09-25 09:22 TOTO2 阅读(78) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std; int main() { short int s=3; s+=4; cout<<"s="<<s<<endl; return 0; } 阅读全文
posted @ 2017-09-25 09:19 TOTO2 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 第一个 第二个 阅读全文
posted @ 2017-09-25 09:17 TOTO2 阅读(61) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> using namespace std; int main() { int a=11,b=1,c; while(a>0,b<6){ c=a-2*b; cout<<c<<endl; b++; } return 0; } #include<iostream> usi 阅读全文
posted @ 2017-09-25 09:11 TOTO2 阅读(83) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std; int main() { int x=8999; int value=x*1000/1000; cout using namespace std; int main() { int x=8999; int value=x/1000*1000; cout using namespace st... 阅读全文
posted @ 2017-09-25 09:07 TOTO2 阅读(114) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> using namespace std; int main() { int short a; a=684318; cout<<"a="<<a<<endl; return 0; } 阅读全文
posted @ 2017-09-21 16:16 TOTO2 阅读(124) 评论(1) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-09-21 16:14 TOTO2 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-09-21 16:12 TOTO2 阅读(74) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std; int main() { bool flag; flag=true; if(flag) cout<<false<<endl; return 0; } 阅读全文
posted @ 2017-09-21 16:10 TOTO2 阅读(65) 评论(0) 推荐(0) 编辑