Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
N
numer-60-2
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sivakorn Bupphadee
numer-60-2
Commits
f39c1e97
Commit
f39c1e97
authored
Feb 13, 2018
by
“Sivakorn”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ส่งการบ้าน week04 ครับ
parent
9bb3a0cc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
0 deletions
+35
-0
.DS_Store
.DS_Store
+0
-0
assignment.cpython-36.pyc
week04/__pycache__/assignment.cpython-36.pyc
+0
-0
assignment.py
week04/assignment.py
+35
-0
No files found.
.DS_Store
0 → 100644
View file @
f39c1e97
File added
week04/__pycache__/assignment.cpython-36.pyc
0 → 100644
View file @
f39c1e97
File added
week04/assignment.py
0 → 100644
View file @
f39c1e97
def
single_prec
(
v
):
s
=
int
(
v
[
0
]);
e
=
''
;
f
=
[];
x
=
1
;
for
i
in
range
(
1
,
len
(
v
)):
if
i
>
0
and
i
<
9
:
e
+=
v
[
i
];
else
:
f
.
append
(
v
[
i
])
for
i
in
range
(
0
,
len
(
f
)):
y
=
int
(
f
[
i
]);
xx
=
(
-
1
)
*
(
i
+
1
)
x
+=
y
*
2
**
xx
;
ee
=
int
(
e
,
2
);
return
((
-
1
)
**
s
*
2
**
(
ee
-
127
)
*
x
)
def
double_prec
(
v
):
s
=
int
(
v
[
0
]);
e
=
''
;
f
=
[];
x
=
1
;
for
i
in
range
(
1
,
len
(
v
)):
if
i
>
0
and
i
<
12
:
e
+=
v
[
i
];
else
:
f
.
append
(
v
[
i
])
for
i
in
range
(
0
,
len
(
f
)):
y
=
int
(
f
[
i
]);
xx
=
(
-
1
)
*
(
i
+
1
)
x
+=
y
*
2
**
xx
;
ee
=
int
(
e
,
2
);
return
((
-
1
)
**
s
*
2
**
(
ee
-
1023
)
*
x
)
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment