包含两种方法,推荐使用第二种,部分情况使用第一种。 还包含将数字转化为字符串的方法。 包含求a的b次方函数使用方法。 包含求绝对值函数的用法。
#include<bits/stdc++.h>
using namespace std;
int main()
{
string str="2376187";
auto x=str[0]-'0';
auto y=str[1]-'0';
cout<<x<<endl;
cout<<y<<endl;
cout<<"**********************第二种方法***************************"<<endl;
char a[10];
int t;
gets(a);
t=atoi(a);
cout<<t<<endl;
int base=2;
int index=3;
cout<<pow(base,index)<<endl;
cout<<"********************把数字类型转化为字符串类型*******************"<<endl;
double vue=3.1415926;
string pi="the vue of pi is "+to_string(vue);
cout<<pi<<endl;
cout<<"*********************绝对值函数******************"
return 0;
}
|