1.c++語言風格
(1)頭部寫法
#include
using
namespace
std;
(2)輸入和輸出
cin>>c>>a>>f ;
cout<
<
<
注:必須用#include
及using namespace std;或用#include
作檔案包含,才能使用cin和cout
(4)常量定義
用const定義符號常量的基本形式為: const [常量型別] 符號常量名=常量值;預設的「常量型別」為int型,const定義的符號常量有自己的資料型別,因此c++編譯程式可進行更加嚴格的型別檢查,符號常量定義的最後一定要有分號
例項:
const
int t1=x+x ; //用const定義定義常量t1
const
int t2=t1-t1; //用const定義定義常量t2
難點: const與指標的結合
(5)新增的強制型別轉換方式
float f=100.23;
x=int(f);
例項:
#include
using
namespace
std;
int main( )
執行結果:
1true
1
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檔案這...