✨ ベストアンサー ✨
解き方は特にありませんが、以下のとおり処理が行われています
a=Cells(2,1).Value :a=セルA2=70
b=Cells(2,1).Value :b=セルA3=80
c=a+b :c=70+80=150
d=b-a :d=80-70=10
Cells(4,1).Value=c (セルA4=150)➀
Cells(3,2).Value=d (セルB3=10)➂
Cells(2,2).Value=c/2 (セルB2=75)➁
Cells(3,3).Value=200-c (セルC3=50)④