帮忙翻译哭了哦我int max_tries = 3; int tries_cnt = 0; while ( tries_cnt { // read user guess if ( usr_guess == next_elem ) break; // terminate loop tries_cnt++; // more stuff } The program can short-circuit execution of the current iteration of the loop by executing a continue statement. For example, consider the following program fragment in which all words of fewer than four characters are discarded:

问题描述:

帮忙翻译哭了哦我
int max_tries = 3;
int tries_cnt = 0;
while ( tries_cnt {
// read user guess
if ( usr_guess == next_elem )
break; // terminate loop
tries_cnt++;
// more stuff
}
The program can short-circuit execution of the current iteration of the
loop by executing a continue statement. For example, consider the
following program fragment in which all words of fewer than four characters
are discarded:

内部max_tries = 3;
内部tries_cnt = 0;
当(tries_cnt {
//读用户猜测
如果(usr_guess == next_elem)
断裂; //终止圈
tries_cnt++;
//更多材料
}
节目可能短路当前的叠代的施行
圈由执行继续声明。例如, 考虑
随后而来的节目片段所有较少比四个字符的词
被摈除:

int max_tries = 3; int tries_cnt = 0; while ( tries_cnt