สถานะการส่งล่าสุด: -

โปรแกรมตรวจสอบเลขจำนวนเต็ม

[Copyright: Nattapon Buaurai]
Title: จำนวนเต็มประเภทใด

จงเขียนโปรแกรมตรวจสอบเลขจำนวนเต็มที่รับเข้าสู่โปรแกรมว่าเป็นจำนวนเต็มประเภทใด (จำนวนเต็มบวก, จำนวนเต็มลบ, ศูนย์) โดยมีตัวอย่างการแสดงผล ดังนี้

ตัวอย่างการทำงาน 1
        Input number : 99
        99 is Positive Number

ตัวอย่างการทำงาน 2
        Input number : 0
        0 is Zero Number

ตัวอย่างการทำงาน 3
        Input number : -1
        -1 is Negative Number

 = int(input("Input number : "))
if():
   print(x," is Positive Number");

   print(x," is Negative Number");

   print(x," is Zero Number");