判断一个数是不是2的幕

判断一个数n是否为2的幂,只需要判断n&(n-1)是否为0,若为0,则为2的幂。因为二进制的位数刚好是按2的幂数展开的。一个数是否为2的幂,则其除了首位外其他位数都应该是0;

例如:4 8

为    0100           1000

     &0011        & 0111

-------  -----------   

0000      0000               为2的幂

    5

 为    0101

      &0100

--------

1110                                    不为2的幂


                

#include<iostream>
using std::cin;
using std::endl;
using std::cout;

int IsPowerOfTwo(int n)
{
	return (n&(n - 1)) == 0 ? 1 : 0;
}
int main()
{
	int a;
	cin >> a;
	cout << "是否2的幂数: " << IsPowerOfTwo(a) << endl;
	system("pause");
	return 0;
}

以下是一个使用Vue3实现从下往上显示弹的页面的示例代码: ```html <template> <div class="danmu-container"> <div class="danmu-box" v-for="(danmu, index) in danmuList" :key="index" :style="{ bottom: (index * lineHeight) + 'px' }">{{ danmu }}</div> </div> </template> <script> import { ref, onMounted, onUnmounted } from 'vue'; export default { name: 'Danmu', setup() { const danmuList = ref([]); const lineHeight = 60; // 弹行高 const danmuHeight = 40; // 弹高度 const danmuSpeed = 2; // 弹速度,每秒移动的像素 // 添加弹 function addDanmu(text) { danmuList.value.push(text); } // 移除弹 function removeDanmu(index) { danmuList.value.splice(index, 1); } // 弹移动 function moveDanmu() { for (let i = 0; i < danmuList.value.length; i++) { const danmuBox = document.querySelectorAll('.danmu-box')[i]; const bottom = parseFloat(danmuBox.style.bottom); if (bottom >= (lineHeight * (i + 1))) { removeDanmu(i); i--; } else { danmuBox.style.bottom = (bottom + danmuSpeed) + 'px'; } } } // 定时器启动弹移动 let timer = null; function startTimer() { timer = setInterval(() => { moveDanmu(); }, 16); } // 清除定时器 function clearTimer() { clearInterval(timer); } // 组件挂载时启动定时器 onMounted(() => { startTimer(); }); // 组件卸载时清除定时器 onUnmounted(() => { clearTimer(); }); return { danmuList, lineHeight, danmuHeight, addDanmu, removeDanmu, moveDanmu, startTimer, clearTimer }; } }; </script> <style scoped> .danmu-container { position: relative; width: 100%; height: 100%; overflow: hidden; } .danmu-box { position: absolute; left: 0; width: 100%; height: 40px; line-height: 40px; font-size: 24px; color: #FFF; white-space: nowrap; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); } </style> ``` 上面的代码中,我们使用了Vue3的Composition API来实现弹从下往上显示的效果。通过`ref`函来创建响应式变量,使用`onMounted`和`onUnmounted`函来处理组件挂载和卸载时的操作。 页面中的弹内容保存在`danmuList`组中,通过`v-for`指令渲染到页面上。根据弹量和弹的高度,计算出弹的位置,并使用`bottom`样式将弹显示在页面上。 弹的移动通过定时器来完成,每隔16毫秒移动一次弹。在移动弹时,判断是否已经移动到了页面顶部,如果是,则从弹列表中删除该弹。最后,使用`setInterval`函启动定时器,在组件卸载时清除定时器,实现弹的自动滚动效果。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值