while(some_condition){
if(FIRST)
{
do_this;
}
else
{
do_that;
}
}
在我的节目中,<代码>>(FIRST)> 的成功率约为1 000。 C/C++中的任何备选案文 这样,我们就能够避免在内部检查每处情况,同时希望能看到在这种情况下取得更好的业绩。
Ok! Let me put in some more detail. i am writing a code for a signal acquisiton and tracking scheme where the state of my system will remain in TRACKING mode more often that ACQUISITION mode.
while(signal_present)
{
if(ACQUISITION_SUCCEEDED)
{
do_tracking(); // this functions can change the state from TRACKING to ACQUISITION
}
else
{
do_acquisition(); // this function can change the state from ACQUISITION to TRACKING
}
}
因此,这里发生的情况是,该系统通常仍处于跟踪模式之中,但在跟踪失败时可以进入采购模式,但并非常见。 假设所输入的数据数量有限。 iii