您需要更改label_3的值,同时要考虑到有一个数字。问题是Label只接受QString的数据类型。我想指出,该值不仅应该改变,还应该增加。
代码:
srand(time(NULL));
int random = rand() % 4;
if (random == 0) {
QMessageBox::information(this, "Search...", "You find materials! [+1]");
// Here add to label_3 + 1
}
// Continue...