2017年9月24日

摘要: #include<iostream> using namespace std; int main(){ cout<<(6&3)<<endl; return 0; } 阅读全文
posted @ 2017-09-24 15:19 三叶癌 阅读(68) 评论(0) 推荐(0)
摘要: #include<iostream> using namespace std; int main(){ short int a=2; a-=1; cout<<a<<endl; return 0; } 阅读全文
posted @ 2017-09-24 15:16 三叶癌 阅读(85) 评论(0) 推荐(0)
摘要: #include using namespace std; int main(){ int a=5,b; b=a++; cout using namespace std; int main(){ int a=5,b; b=++a; cout<<b<<endl; return 0; } 阅读全文
posted @ 2017-09-24 15:14 三叶癌 阅读(104) 评论(0) 推荐(0)
摘要: #include using namespace std; int main(){ int a=11,b=1,c; while(a>0,b using namespace std; int main(){ for (int a=1;a<=11;a++){ if(a%2==1) cout<<a<<endl; } return... 阅读全文
posted @ 2017-09-24 15:08 三叶癌 阅读(107) 评论(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 std; int main... 阅读全文
posted @ 2017-09-24 14:12 三叶癌 阅读(83) 评论(0) 推荐(0)

导航