您好,登錄后才能下訂單哦!
這篇文章主要介紹“如何使用C++中atof函數(shù)”,在日常操作中,相信很多人在如何使用C++中atof函數(shù)問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”如何使用C++中atof函數(shù)”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
在 stdlib.h
中 atof
函數(shù),可用于將 char
字符串轉(zhuǎn)為 float / double
浮點數(shù)類型,
語法如下:
/* *描述:將一個char類型轉(zhuǎn)為浮點數(shù)double * *參數(shù): * [in] str:字符串類型 * *返回值:返回char類型對應(yīng)的浮點數(shù)double */ double atof ( const char * str );
#include "stdafx.h" #include <stdio.h> #include "windows.h" #pragma warning(disable: 4996) int _tmain(int argc, _TCHAR* argv[]) { printf("atof函數(shù)計算結(jié)果 %f \n", atof("13456")); printf("atof函數(shù)計算結(jié)果 %f \n", atof("0")); printf("atof函數(shù)計算結(jié)果 %f \n", atof("789")); printf("atof函數(shù)計算結(jié)果 %f \n", atof("123.123")); printf("atof函數(shù)計算結(jié)果 %f \n", atof("-9")); system("pause"); return 0; }
輸出:
atof函數(shù)計算結(jié)果 13456.000000
atof函數(shù)計算結(jié)果 0.000000
atof函數(shù)計算結(jié)果 789.000000
atof函數(shù)計算結(jié)果 123.123000
atof函數(shù)計算結(jié)果 -9.000000
請按任意鍵繼續(xù). . .
注意占位符的使用:
浮點是使用 %f
整數(shù)是使用 %d
char字符是使用 %c
char字符串是使用 %s
到此,關(guān)于“如何使用C++中atof函數(shù)”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。