进制转换问题(c++)

建立顺序栈或链栈,编写程序实现十进制数到二进制数的转换。
Description
输入只有一行,就是十进制整数。
Input
转换后的二进制数。
Output
1
10
Sample Input
1
1010
#include<iostream>
#include<string>
#include<cstdlib>
#include<list>
#include<stack>
using namespace std;
 

int main()
{
	int n;
	while (cin >> n)
	{
		stack<int> z;
		while (n != 0)
		{
			z.push(n% 2);
			n = n / 2;
		}
		while (!z.empty())
		{
			cout << z.top();
			z.pop();
		}
		cout << '\n';
	}
	return 0;
}

//by swust_t_p
全部评论

相关推荐

牛舌:如果我不想去,不管对方给了多少,我一般都会说你们给得太低了。这样他们就会给下一个offer的人更高的薪资了。
点赞 评论 收藏
分享
牛客5655:其他公司的面试(事)吗
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务