摘要:
#include<iostream> using namespace std; int main(){ cout<<(6&3)<<endl; return 0; } 阅读全文
posted @ 2017-09-25 23:50
LemonSir
阅读(57)
评论(0)
推荐(0)
摘要:
#include<iostream> using namespace std; int main(){ short int k=2; k+=1; cout<<k<<endl; return 0; } 阅读全文
posted @ 2017-09-25 23:49
LemonSir
阅读(52)
评论(0)
推荐(0)
摘要:
#include using namespace std; int main(){ int a=7,b; b=a++; cout using namespace std; int main(){ int a=7,b; b=++a; cout<<b<<endl; return 0; } 阅读全文
posted @ 2017-09-25 23:40
LemonSir
阅读(71)
评论(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-25 23:34
LemonSir
阅读(88)
评论(0)
推荐(0)
摘要:
#include<iostream> using namespace std; int main(){ int x=8999; int value=x*1000/1000; cout<<"value="<<value<<endl; return 0; } 阅读全文
posted @ 2017-09-25 23:32
LemonSir
阅读(122)
评论(2)
推荐(0)

浙公网安备 33010602011771号