gpt4 book ai didi

java - 当用户每次点击加号按钮时,如何添加+30?

转载 作者:行者123 更新时间:2023-12-02 01:34:12 25 4
gpt4 key购买 nike

对于第一个项目,总数为 49,但我想在用户每次单击按钮时添加 30。

1st item: 49
2nd item: 79
3rd item: 109

等等。

我已经尝试过,但它不起作用:

for (int i =49;i<9;i=i+30) 
{
price.setText("$" + Integer.toString(i));
}

最佳答案

如果你想在循环中工作,那么就这样做。

 int firstval = 49;
for (int i = 0; i < 9; i++) {
System.out.println(Integer.toString(firstval += 30));
}

ans会是这样的

I/System.out: 79
I/System.out: 109
I/System.out: 139
I/System.out: 169
I/System.out: 199
I/System.out: 229
I/System.out: 259
I/System.out: 289
I/System.out: 319

或者如果您想单击按钮,则

int firstval = 49;
button.setOnClickListener(v -> incValue());
private void incValue() {
System.out.println(Integer.toString(firstval += 30));
}

关于java - 当用户每次点击加号按钮时,如何添加+30?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55490056/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com