while迴圈語句
**:
#include #includeintmain()
std::cout
<<"
sum of 1 to 10 is
"getch();
return0;
}
結果:sum of 1 to 10 is 55
點評:++val 和val=val+1是一樣的。
for語句
**:
#include #includeintmain()
std::cout
<<"
sum of 1 to 10 is
"getch();
return0;
}
結果:sum of 1 to 10 is 55
點評:功能,實現1到10求和操作。
for迴圈其實是一種while的衍生品。
if語句
**:
#include #includeintmain()
else
int sum = 0
;
for(int val = lower;val<=upper;++val)
std::cout
<<"
sum of
"<<<"
to "
<<<"
is "
getch();
return0;
}
結果:enter two numbers:85
sum of 5 to 8 is 26
點評:功能,實現兩個數字之間數的和。
通過if來判斷輸入值的大小,然後計算出它們之間自然數的和。
類一般來說,我們將類定義放入乙個檔案中,要使用該類的任何程式都必須包含這個檔案。
引入類檔案.h檔案,只需要將.h檔案放入cpp檔案的目錄下即可。
然後通過#include "***x.h"引入即可。
**:
#include #include#include
"sales_item.h
"int
main()
引入自定義的類
結果:0-201-70353-x 4 20
0-201-70353-x 4 80 20
點評:這是類的簡單示例,裡面的內部結構還沒有談清晰呢,先感受一下。
C 學習第二天
方法的可選引數 static void main string args static void testinfo int a 158,int b 10,float f 0.8f b f a,b,f 下面這個方法中形式引數a為必選引數,換句話說當呼叫該方法時,至少是int a 118 testinf...
C 第二天學習
1.今天oj上開了 類 專題的題,做了幾個簡單的題,感覺上面的題還是比較水的,不過b題還是wa了4次。然後又看了一下課本上關於類的知識點,覺得類這種資料形式使資訊隱藏變得現實,只有類裡public下的函式可以使用private下的資料,如果沒有介面的話,這樣的乙個類就真的 隱藏 了。不過這樣就沒意義...
C 學習第二天
1.c語言的輸入輸出 define crt secure no warnings include include int main 2.c 的輸入和輸出 include include using namespace std void main 1.第乙個是我們 include他引用了沒有.h檔案這...