-3
このプログラムをif-else-ifステートメントからswitchステートメントに変換するのに問題があります。どんな助けもありがとう。このプログラムをif-else-ifステートメントからswitchステートメントに変換するのに問題があります。どんな助けもありがたいです
public void tick() {
if (s.word == 0)
return;
short t = this.sc.word;
short d = this.get_opcode();
short i = this.get_indirect_bit();
if (t == 0 || t == 1)
this.instruction_fetch(t);
if (t == 2)
this.instruction_decode();
if (t == 3 && d != 7)
this.operand_fetch(i);
if (t > 3 && d != 7)
this.execute_mri(d, t);
if (t == 3 && d == 7) {
this.execute_rri((short) (this.ir.word & 0xFFF));
}
}
そのhasn働いた?それが立てば、これはちょうど「私のためのコードを書くことができますか?」です。 – Withnail
'&&'ステートメントを大文字と小文字の区別なく簡単に変更することはできません。もしあなたがどこかにいる必要があります –