2的N次方输出

这篇文章详细描述了一个C++程序,通过循环和递归计算并输出指定次数的2的幂,使用了动态内存分配来存储中间结果。
摘要由CSDN通过智能技术生成

 如下:

#include<iostream>
#define endl '\n'
using namespace std;
signed main() {
	ios::sync_with_stdio(0);//关流
	cout.tie(0);
	cin.tie(0);
	int top = 1,n=0;
	cout << "请输入需要求的2的次方数字:";
	cin >> n;
	int* a = (int*)calloc(n, sizeof(a));
	a[0] = 1;
	for (int i = 0; i < n; i++) {
		int t = 0;
		for (int j = 0; j < top; j++)
		{
			t += a[j]*2;
			a[j] = t % 10;
			t /= 10;
		} 
		if (t)a[top++]++;
		cout << "2的" << i+1 << "次方为";
		for (int i2 = top - 1; i2 >= 0; i2--) {
			cout << a[i2];
		}
		
		cout << endl;
	
	}free(a);
	return 0;
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值