溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何使用C++中atof函數(shù)

發(fā)布時間:2021-11-29 09:19:59 來源:億速云 閱讀:234 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹“如何使用C++中atof函數(shù)”,在日常操作中,相信很多人在如何使用C++中atof函數(shù)問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”如何使用C++中atof函數(shù)”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

一.atof 函數(shù)

stdlib.hatof 函數(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 );

二.atof 函數(shù)函數(shù)實戰(zhàn)

#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>

向AI問一下細(xì)節(jié)

免責(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)容。

c++
AI