当前位置:网站首页>力扣刷题日记/day4/6.26
力扣刷题日记/day4/6.26
2022-07-04 16:33:00 【bobo洁厕灵】
新手村
日升日落,总有黎明
VScode运行java项目
新建一个窗口
CTRL+SHIFT+P,在弹出的窗口中输入create java,选择No build tools
选择一个文件夹存放java工程代码
设置工程名称
即可运行java代码
while循环
do while循环
do{
代码块
}while(布尔表达式);
do while循环至少执行一次,因为先执行do语句,再执行判断语句while,所以至少执行一次代码块内容。
while循环
while(表达式){
代码块;
//跳出while循环的方法
if(){
break
}
}
while(1)、while(2)、while(3)都表示条件为真,也就是说非0的数都表示真。
while循环若是表达式不满足,则一次都不执行。
自增符i++和++i
i++是先运算,再加一
++i是先加一,再运算
Java中i=i++和i++
以上代码中,最后输出的i的值始终为0,
因为i首先赋值给i为0,执行一次后,i的值为0,再进行i=i++,赋值运算一直在赋i=0。
修改代码
以上代码就可以实现对i的值的改变,while语句执行了n次,i的值就为n
例题
解题思路:首先定义运算次数i,创建一个while循环,判断num是否为偶数,是的话num=num/2,否的话num=num-1。i++,记录执行次数,最后return i
class Solution {
public int numberOfSteps(int num) {
int i=0;
while(num != 0){
if(num % 2 == 0){
num=num/2;
}
else{
num=num-1;
}
i++;
}
return i;
}
}
边栏推荐
- 2022 national CMMI certification subsidy policy | Changxu consulting
- 国产数据库TiDB初体验:简单易用,快速上手
- 网上开户安全吗?是真的吗?
- [210] usage of PHP delimiter
- [cloud native] what is the "grid" of service grid?
- Numpy 的仿制 2
- Superscalar processor design yaoyongbin Chapter 7 register rename excerpt
- Large scale service exception log retrieval
- 【Hot100】31. Next spread
- Stars open stores, return, return, return
猜你喜欢
随机推荐
With the stock price plummeting and the market value shrinking, Naixue launched a virtual stock, which was deeply in dispute
[211] go handles the detailed documents of Excel library
78岁华科教授冲击IPO,丰年资本有望斩获数十倍回报
TCP waves twice, have you seen it? What about four handshakes?
【每日一题】871. 最低加油次数
SIGMOD’22 HiEngine论文解读
About the pit of firewall opening 8848 when Nacos is started
You should know something about ci/cd
[HCIA continuous update] network management and operation and maintenance
俄罗斯 Arenadata 发布基于PostgreSQL的产品
7 RSA Cryptosystem
比李嘉诚还有钱的币圈大佬,刚在沙特买了楼
【系统盘转回U盘】记录系统盘转回U盘的操作
通过事件绑定实现动画效果
Summary of subsidy policies across the country for dcmm certification in 2022
力扣刷题日记/day7/6.30
Implementation of shell script replacement function
RecastNavigation 之 Recast
力扣刷题日记/day8/7.1
2022 national CMMI certification subsidy policy | Changxu consulting