ユーザーは携帯電話とコンピュータの2回を入力します。彼らが違うなら、私はそれらをお互いに等しくする必要があります。その後、コンピュータの時間を携帯電話の時計よりも1時間5分23秒早くする必要があります。値を一定量増やす
これはif文です。
if (!myComputerClock.equalTime(cellPhoneClock))
{
myComputerClock=cellPhoneClock;
cout << " The new time is: \n";
cout << " Cellphone: ";
cellPhoneClock.printTime();
cout << endl << endl;
cout << " Computer: ";
myComputerClock.printTime();
}
else
{
myComputerClock.incrementHours();
myComputerClock.incrementMinutes();
myComputerClock.incrementSeconds();
}
'myComputerClock.setTime(chrs、cmins、csecs)= ...'奇妙に見える... – John3136
'setTime'の戻り時間は?私は推測している - '空'! – StoryTeller
あなたの質問を編集して別の質問に変更するのではなく、新しい質問を投稿してください - それがSOの運営方法です(将来的にユーザーに支援を提供するのに役立ちます)。 – Jeff