Commit 2749dd77 authored by Kittisak Maneewong's avatar Kittisak Maneewong

ส่งงาน week05

parent 56a83261
#งาน week04
def single_prec(v):
v+="0"*(32-len(v))
return (-1)**int(v[0])*sum([int(v[i])* (2 ** (8 - i)) for i in range(1,32)])
def double_prec(v):
v+="0"*(64-len(v))
return (-1)**int(v[0])*sum([int(v[i]) * (2 ** (11 - i)) for i in range(1, 64)])
\ No newline at end of file
#59110440046
#นายกิตติศักดิ์ มณีวงษ์
def ge(A,b):
pass
def solve(A,b):
pass
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment