位置:首頁 > 高級語言 > C++教學 > C++數字

C++數字

通常情況下,當我們使用數字在工作中,使用原始的數據類型,如int, short, long, float和double數等數據類型,其可能的值並在數字的範圍內,已解釋在C++數據類型這一章。

在C++定義數字:

我們已經定義在前麵的章節中給出各種數字的例子。下麵的例子是C++綜合定義各種類型數字:

#include <iostream>
using namespace std;
 
int main ()
{
   // number definition:
   short  s;
   int    i;
   long   l;
   float  f;
   double d;
   
   // number assignments;
   s = 10;      
   i = 1000;    
   l = 1000000; 
   f = 230.47;  
   d = 30949.374;
   
   // number printing;
   cout << "short  s :" << s << endl;
   cout << "int    i :" << i << endl;
   cout << "long   l :" << l << endl;
   cout << "float  f :" << f << endl;
   cout << "double d :" << d << endl;
 
   return 0;
}

當上述代碼被編譯和執行時,它產生了以下結果:

short  s :10
int    i :1000
long   l :1000000
float  f :230.47
double d :30949.4

C++數學運算:

除了創建的各種函數,C++也包括可以用一些有用的函數。這些函數都是標準的C和C++庫,並提供所謂的內置函數。這些功能可以被包括在程序中再使用。

C++擁有一套豐富的數學運算,它可以在不同的數字來進行的。下表列出了一些有用的內置在C++中提供的數學函數。

利用這些函數需要包括數學頭文件 <cmath>.

S.N. 函數及用途
1 double cos(double);
這個函數計算角度(如double),並返回餘弦值
2 double sin(double);
這個函數計算角度(如double),並返回正弦
3 double tan(double);
這個函數計算角度(如double),並返回切線
4 double log(double);
這個函數接受一個數字,並返回該數的自然對數
5 double pow(double, double);
首先是一個數字,第二個是希望它提升到次冪
6 double hypot(double, double);
如果通過這個函數直角三角形兩邊的長度,它會返回斜邊的長度
7 double sqrt(double);
通過這個函數,它返回這個數的平方根
8 int abs(int);
此函數返回傳遞給它的一個整數的絕對值
9 double fabs(double);
該函數返回傳遞給它的任何十進製數的絕對值
10 double floor(double);
查找整數小於或等於傳遞給它的參數

下麵一個簡單的例子來顯示幾個數學運算:

#include <iostream>
#include <cmath>
using namespace std;
 
int main ()
{
   // number definition:
   short  s = 10;
   int    i = -1000;
   long   l = 100000;
   float  f = 230.47;
   double d = 200.374;

   // mathematical operations;
   cout << "sin(d) :" << sin(d) << endl;
   cout << "abs(i)  :" << abs(i) << endl;
   cout << "floor(d) :" << floor(d) << endl;
   cout << "sqrt(f) :" << sqrt(f) << endl;
   cout << "pow( d, 2) :" << pow(d, 2) << endl;
 
   return 0;
}

讓我們編譯和運行上麵的程序,這將產生以下結果:

sign(d) :-0.634939
abs(i)  :1000
floor(d) :200
sqrt(f) :15.1812
pow( d, 2 ) :40149.7

C++隨機數:

有很多情況下,希望生成一個隨機數。實際上需要了解兩種生成隨機數函數。第一個rand(),該函數將隻返回一個偽隨機數。解決這個問題的方法是,先調用srand()函數。

下麵是一個簡單的例子來產生一些隨機數。這個例子使用 time() 函數來獲取對係統時間的秒數,隨機種子使用 rand() 函數:

#include <iostream>
#include <ctime>
#include <cstdlib>

using namespace std;
 
int main ()
{
   int i,j;
 
   // set the seed
   srand( (unsigned)time( NULL ) );

   /* generate 10  random numbers. */
   for( i = 0; i < 10; i++ )
   {
      // generate actual random number
      j= rand();
      cout <<" Random Number : " << j << endl;
   }

   return 0;
}

當上述代碼被編譯和執行時,它產生了以下結果:

 Random Number : 1748144778
 Random Number : 630873888
 Random Number : 2134540646
 Random Number : 219404170
 Random Number : 902129458
 Random Number : 920445370
 Random Number : 1319072661
 Random Number : 257938873
 Random Number : 1256201101
 Random Number : 580322989