برنامه سازی پیشرفته

۷ مطلب در فروردين ۱۴۰۲ ثبت شده است

h=int(input('enter your number: '))

:if 9<h<100

    m=(h//10)    

    p=(h%10)    

 z=(p*10)+m    

    print(z)    

۰ نظر موافقین ۰ مخالفین ۰ ۲۵ فروردين ۰۲ ، ۱۸:۳۱
حدیث حسین پور

w1=int(input('enter your number: '))

w2=int(input('enter your number: '))

w3=int(input('enter your number: '))

:if w1>w2

    i=w1    

    w1=w2    

    w2=i    

:if w1>w3

    i=w1    

    w1=w3    

    w3=i    

:if w2>w3

    i=w2    

    w2=w3    

    w3=i    

    print(w1,w2,w3)    

۰ نظر موافقین ۰ مخالفین ۰ ۲۵ فروردين ۰۲ ، ۱۸:۰۶
حدیث حسین پور

h=int(input('enter your number: '))

:if h==2

    print('two')    

:elif h==3

    print('three')    

:elif h==5

    print('five')    

:else

    print('other')    

۰ نظر موافقین ۰ مخالفین ۰ ۲۴ فروردين ۰۲ ، ۲۱:۰۶
حدیث حسین پور

h=int(input('enter your number: '))

:if   h%3==0

    print('yes')    

:elif h%3==1 or h%3==2

    print('no')    

 

۰ نظر موافقین ۰ مخالفین ۰ ۲۴ فروردين ۰۲ ، ۲۱:۰۰
حدیث حسین پور

h=int(input('enter your number: '))

:if  h==0

    print('zero')    

:elif h==1

    print('one')    

:elif h==2

    print('two')    

:elif h==3

    print('three')    

:elif h==4

    print('for')    

:elif h==5

    print('five')    

:elif h==6

    print('six')    

:elif h==7

    print('seven')    

:elif h==8

    print('eight')    

:elif h==9

    print('nine')    

 

۰ نظر موافقین ۰ مخالفین ۰ ۲۴ فروردين ۰۲ ، ۲۰:۱۸
حدیث حسین پور

a=(input('k: '))

b=(input('f: '))

c=(input('v: '))

:if a>b and a>c

    print('k')    

:if c>a and c>b

    print('v')    

:if b>c and b>a

    print('f')    

 

۰ نظر موافقین ۰ مخالفین ۰ ۲۴ فروردين ۰۲ ، ۱۸:۴۵
حدیث حسین پور

x=int(input('enter your number: '))

:if h > 0

    print('h is posetive')    

:elif h < 0

    print('h is negetive')    

:else

  print('zero')    

   

۰ نظر موافقین ۰ مخالفین ۰ ۲۴ فروردين ۰۲ ، ۱۷:۵۹
حدیث حسین پور