2019 02 17學習記錄

2021-09-11 01:34:23 字數 566 閱讀 6263

1.今天總結了一下常見選擇結構if

的題型;

1)判斷數正負   (n==0)?(cout<<"zero"):(cout<<"positive"):(cout<<<"negative");

2)輸出絕對值  if(n>=0) coutelse cout<<"even"<4)奇偶ascii值判斷 if(ch%2==0)  cout<<"no"<5)判斷是否是兩位數 if(n>=10&&n<=99)  cout<<1<6)整數大小比較 if(x>y) cout<<">"=10&&y>=20) cout<<1<8)判斷乙個數能否同時被3.5整除 if((n%3==0)&&(n%5)==0)

else cout<<"no"<9)有一門課不及格的學生 if((chinese>=60&&math<60)||(chinese<60&&math>=60)

cout<<12.cout<

cout<;

等價於

cout<

3.記海**式:area=sqrt(p*(p-a)*(p-b)*(p-c))

p=(a+b+c)/2.0

4.記題目看到         t1049

mysql學習記錄 MySQL學習記錄 2

in 子查詢 select from student where id in 1,2 not in 不在其中 select from student where id not in 1,2 is null 是空 select from student where age is null is not...

java學習記錄

陣列雖然是引用資料型別,但它不是類 所以數字中沒有length 方法 只有length屬性。string型別 是乙個類 jdk中已經封裝好的類,是個final類,你可以去查api 類就有屬性和方法但是 string類中沒有length屬性,只有length 方法 1。陣列雖然是引用資料型別,但它不是...

Linux 學習記錄

1.linux 拷貝隱藏檔案 進入當前需要拷貝的目錄,即源目錄 假如 source 拷貝到 centos5.3 cd source tar cf cd centos5.3 tar xvf 或者 cp r centos5.3 2.linux 下新增postgresql 使用者 進入 postgresq...