Welcome, guest! Login / Register - Why register?
Psst.. new poll here.
[email protected] web/email now available. Want one? Go here.
Cannot use outlook/hotmail/live here to register as they blocking our mail servers. #microsoftdeez
Obey the Epel!

Paste

Pasted as Python by curry ( 4 years ago )
# 二階行列式計算機

print('二階行列式計算機\n| a1 a2 |\n| b1 b2 |')

a1 = int(input("請輸入 a1: "))
a2 = int(input("請輸入 a2: "))
b1 = int(input("請輸入 b1: "))
b2 = int(input("請輸入 b2: "))

print("A: ", (a1 * b2) - (a2 * b2 ))

 

Revise this Paste

Your Name: Code Language: