c++開始學習1
慕課-c++遠征之起航篇
1、c++與c的不同
數據類型:共同:基本:(int、char、float、double),構造:(數組、struct、union、emum),指針類型,空類型(void)。
異:c++多了bool型
初始化數值:同:int x = 1;
異:c++多了 int x(1)?
輸入輸出不同:c:scanf,print
c++:cin,cout
定義位置:c:函數內開頭
c++:隨用隨定義
2、c++語句介紹
1)#include <iostream> 該庫定義了三個標準流對象,cin、cout、cerr。一般用法 cin >> x(輸入x是什麽);cout << "xxx"(或者變量x)<< endl;
cout << oct(dec、hex,進制) << x << endl;以什麽進制輸出
cout << boolalpha << y << endl; 以bool值true or false 輸出y
2)# include <stdlib.h> 常用的函數庫
3)using namespace std; 使用std命名空間
namespace xx {}定義某命名空間( using namespace * 釋放某命名空間,使用)
不同命名空間可以使用相同變量名,用xx::x 區分
4)system(”pause“)系統命令,按任意鍵繼續
3、註意事項
1)使用雙引號
2)開頭三行一般為:#include <iostream>
#include <stdlib.h>
using namespace std;
4、例子,找出數組中的最大值
#include <iostream>
#include <cstdlib>
using namespace std;
int getValue(int *arr, int count)
{
int temp = arr[0];
for(int i = 0; i < count; i++)
{
if(arr[i] > temp)
{
temp = arr[i];
}
}
return temp;
}
int main()
{
cout << "請輸入一個數組:" << endl;
int arr1[4] = {11,9,5,4};
//cin >> arr1; ??數組怎樣輸入、輸出
//cout << arr1 << endl;
cout << getValue(arr1,4) << endl;
}
c++開始學習1