Skip to content

Commit

Permalink
feat: day 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Faelayis committed Nov 14, 2023
1 parent 28306a6 commit d3bece2
Show file tree
Hide file tree
Showing 10 changed files with 37 additions and 58 deletions.
6 changes: 6 additions & 0 deletions COM-1305/11-14-66/if.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
score = 80

if score > 80:
print("so good")
else:
print("sorry")
1 change: 1 addition & 0 deletions COM-1305/11-14-66/index.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("Hello Python")
51 changes: 0 additions & 51 deletions COM-1305/chapter/1/README.md

This file was deleted.

8 changes: 4 additions & 4 deletions COM-1305/chapter/1/1.py → COM-1305/chapter/2/1.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# 1.ให้เขียนโปรแกรมแสดง รหัสนักศึกษา ชื่อ-นามสกุล และจังหวัดที่อาศัยอยู่

student_id = "66143XXX"
full_name = "Pichwach Jantharangsee"
full_name = "Faelayis"
province = "Chiang Mai"

print("รหัสนักศึกษา:", student_id)
print("ชื่อ-นามสกุล:", full_name)
print("จังหวัดที่อาศัย:", province)
print("รหัสนักศึกษา :", student_id)
print("ชื่อ-นามสกุล: ", full_name)
print("จังหวัดที่อาศัย: ", province)
2 changes: 1 addition & 1 deletion COM-1305/chapter/1/2.py → COM-1305/chapter/2/2.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
#การแสดงอายุ
age = 20

print("อายุ:", age)
print("อายุ: ", age)
2 changes: 1 addition & 1 deletion COM-1305/chapter/1/3.py → COM-1305/chapter/2/3.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

area_triangle = 0.5 * base * height

print("พื้นที่สามเหลี่ยม:", area_triangle)
print("พื้นที่สามเหลี่ยม: ", area_triangle)
2 changes: 1 addition & 1 deletion COM-1305/chapter/1/4.py → COM-1305/chapter/2/4.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

area_rectangle = width * length

print("พื้นที่สี่เหลี่ยมผืนผ้า:", area_rectangle)
print("พื้นที่สี่เหลี่ยมผืนผ้า: ", area_rectangle)
7 changes: 7 additions & 0 deletions COM-1305/chapter/2/5.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# 5.ให้ตอบคำถามต่อไปนี้ ว่าชื่อตัวแปรที่กำหนดถูกหรือผิด ถ้าผิดเพราะอะไร

# GPA ถูก
# _ProgramPthon ถูก
# Num 123 ผิด ไม่ควรมีเว้นวรรคในชื่อตัวแปรและไม่ควรขึ้นต้นด้วยตัวเลข: Num123 ถูกต้อง
# email@cmru ผิด ไม่สามารถใช้ @ เป็นส่วนหนึ่งของชื่อตัวแปรได้
# 64122456ID ผิด ตัวแปรไม่ควรขึ้นต้นด้วยตัวเลข
8 changes: 8 additions & 0 deletions COM-1305/chapter/2/6.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# 6.ให้เขียนโปรแกรมหาพื้นที่สามเหลี่ยม เมื่อกำหนดให้ ค่าฐานเท่ากับ 10 ค่าความสูงเท่ากับ 20 ให้แสดงชนิดตัวแปรผลลัพธ์พื้นที่ แล้วเปลี่ยนผลลัพธ์พื้นที่เป็นชนิด int

base = 10
height = 20
area = 0.5 * base * height

print("พื้นที่ของสามเหลี่ยมคือ:", area)
print("พื้นที่เป็นชนิด int คือ:", type(area))
8 changes: 8 additions & 0 deletions COM-1305/chapter/2/7.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# 7. ให้เขียนโปรแกรมหาพื้นที่สี่เหลี่ยมผืนผ้า เมื่อกำหนดให้ค่าความกว้างเท่ากับ 100 ความยาวเท่ากับ 400 ให้แสดงชนิดตัวแปรผลลัพธ์พื้นที่ เปลี่ยนผลลัพธ์พื้นที่เป็น str

width = 100
length = 400
area = width * length

print("พื้นที่ของสี่เหลี่ยมผืนผ้าคือ:", area)
print("พื้นที่เป็นชนิด area คือ:", type(area))

0 comments on commit d3bece2

Please sign in to comment.