to_string()的应用

Posted 俺叫王梦涵

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了to_string()的应用相关的知识,希望对你有一定的参考价值。

作用是将数字转化为字符串

#include<iostream>
#include<cmath>
#include<algorithm>
#include<cstring>
#include<string>
#include<stack>
#include<queue>
#include<map>
#include<cstdlib>
#include<set>
#include<ctime>
#include<vector>
#include<cstdio>
#include<list>
using namespace std;
typedef long long ll;
int INF=2147483647;
int inf=-2147483648;
#define read(x) scanf("%d",&x);
#define fo(i,n) for(int i=1;i<=(n);i++)
#define me(a) memset(a,0,sizeof(a));
#define one(x) cout<<(x)<<endl;
#define two(a,b) cout<<(a)<<" "<<(b)<<endl;
int main()
{
    int n;
    string s;
    for(int i=1;i<=1000;i++)
    {
        s+=to_string(i);
    }
    cin>>n;
    one(s[n-1]);
    return 0;
}

 

以上是关于to_string()的应用的主要内容,如果未能解决你的问题,请参考以下文章

错误:to_string 未在此范围内声明

为啥数字类型只有一个`to_string()`?

std::to_string(double) 的精度

多个重载函数 to_string 实例与参数列表匹配

如何将字符串从 df.to_string() 转换回 DataFrame [重复]

为啥我的 to_string() 不起作用? [复制]