单选题26.以下程序中有两个并发进程,且假设这两个并发进程可以任何相对速度执行,变量amount的值只有被单独的机器指令装入寄存器后才能被增值。 BEGIN amount:integer; amount:=0; COBEGIN process Pl nl:integer; BEGIN for n1:=1 to 10 do amount:=amount+2; END; process P2 n1:integer; BEGIN for n1:=1 to 10 do amount:=amount+3; END; COEND write(amount); END; 以上程序输出的共享变量amount的上下界为( )。