目錄
成都創(chuàng)新互聯公司2013年成立,先為綠春等服務建站,綠春等地企業(yè),進行企業(yè)商務咨詢服務。為綠春企業(yè)網站制作PC+手機+微官網三網同步一站式服務解決您的所有建站問題。
零基礎 C/C++ 學習路線推薦 : C/C++ 學習目錄 >> C 語言基礎入門
在 stdlib.h
中 atof
函數,可用于將 char
字符串轉為 float / double
浮點數類型,語法如下:
/*
*描述:將一個char類型轉為浮點數double
*
*參數:
* [in] str:字符串類型
*
*返回值:返回char類型對應的浮點數double
*/
double atof ( const char * str );
/******************************************************************************************/
//@Author:猿說編程
//@Blog(個人博客地址): www.codersrc.com
//@File:C/C++ atof函數
//@Time:2021/08/15 08:00
//@Motto:不積跬步無以至千里,不積小流無以成江海,程序人生的精彩需要堅持不懈地積累!
/******************************************************************************************/
#include "stdafx.h"
#include
#include "windows.h"
#pragma warning(disable: 4996)
int _tmain(int argc, _TCHAR* argv[])
{
printf("atof函數計算結果 %f \n", atof(""));
printf("atof函數計算結果 %f \n", atof("0"));
printf("atof函數計算結果 %f \n", atof("789"));
printf("atof函數計算結果 %f \n", atof("123.123"));
printf("atof函數計算結果 %f \n", atof("-9"));
system("pause");
return 0;
}
/*
輸出:
atof函數計算結果 .000000
atof函數計算結果 0.000000
atof函數計算結果 789.000000
atof函數計算結果 123.
atof函數計算結果 -9.000000
請按任意鍵繼續(xù). . .
*/
注意占位符的使用:
浮點是使用 %f
整數是使用 %d
char字符是使用 %c
char字符串是使用 %s
未經允許不得轉載:猿說編程 ? C/C++ atof 函數
本文由博客 - 猿說編程 猿說編程 發(fā)布!