s = 16108088 T = s Mod 100 L = s Mod 10 emf = T V = emf R1 = L + 1 R2 = L + 2 R3 = L + 3 ' For series circuit: R = R1 + R2 + R3 current_I = V / R MsgBox current_I V1 = current_I * R1 V2 = current_I * R2 V3 = current_I * R3 MsgBox V1 MsgBox V2 MsgBox V3 ' For parallel circuit: R = R1 * R2 * R3 / (R1 * R2 + R1 * R3 + R2 * R3) current_I = V / R MsgBox current_I current_I1 = V / R1 current_I2 = V / R2 current_I3 = V / R3 MsgBox current_I1 MsgBox current_I2 MsgBox current_I3