摘要: #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) 编辑