首页 > 代码库 > 整数转字符串
整数转字符串
知识点:
c++中栈的操作
方法一:
#include "stdafx.h" #include <iostream> #include <stack> using namespace std; int main(int argc, char** argv) { stack<char> s; int num=1234050; int temp; char ch; while(num!=0) { temp=num%10; ch=temp+'0'; num/=10; s.push(ch); } cout<<"The number is:"<<endl; while(!s.empty()) { ch=s.top(); cout<<ch; s.pop(); } cout<<endl; system("pause"); return 0; }
方法二:
#include "stdafx.h" #include <iostream> using namespace std; int main(int argc, char** argv) { int num=1234050; char string[8]; itoa(num,string,10); cout<<string<<endl; system("pause"); return 0; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。