مشاركة حلول: عمل تطبيق للتقديم على المنح scholarship program

Answer
age = input("Enter your age: ")
age = int(age)

if age < 18:
	print("You are too young!")
elif age > 22:
	print("You are too old!")
else:
	print("Welcome to Egypt scholarship program")
3 Likes

ممتاز @Kareem :ok_hand:

3 Likes

تطبيق التقديم على منحة الدراسة

age = input('Enter you age please')
age = int(age)
if age < 18:
    print('You are too young')
elif age <= 22:
    print('Welcome to Egypt scholarship program')
else:
    print('You are too old')
3 Likes

عمل رائع يا خليفة :+1:

1 Like

الحل الخاص بي

age = input()
age = int(age)
if age <18:
    print('You are too young')
elif age > 22:
    print('You are too old')
else:
    print('Welcome to Egypt scholarship program')
2 Likes
age = input() 
age = int(age)
if age < 18:
    print("you're too young")
elif age <= 22 :
     print("wellcom to the scholarship program")
else:
     print("you're too old")

مارايك يااستاذ في هذا الكود؟

2 Likes

حلول رائعة @hashad @Kamal :+1: :+1:

1 Like
age = input()
age = int(age)

if age < 18:
    print 'You are too young'
elif age > 22:
    print 'You are too old'
else:
    print 'Welcome to Egypt scholarship program'
2 Likes

عمل رائع يا أحمد :+1:

1 Like
age = input()
age = int(age)

if age < 18:
  print('You are too young')
elif age > 22:
  print('You are too old')
else:
  print('Welcome to Egypt scholarship program')

أعتقد أن الكود الخاص بي خطير جداً :joy:

2 Likes

Sure @Wan :joy::joy: :clap:

2 Likes

تطبيق المنح :slight_smile:

age = input ("enter your age")
age = int (age)

print (age) 

if age <18 :
   print ("You are too young")
elif 18 <= age <= 22 :
   print ("Welcome to Egypt scholarship program")
else:
   print ("You are too old")  
2 Likes
age = input()
age = int(age)
if age < 18 :
    print("You are too young")
elif age > 22 :
    print("You are too old")
else:
    print("Welcome to Egypt scholarship program")
3 Likes

عمل رائع يا أحمد :+1:

3 Likes

هل هاذا مناسب

age = input()
age = int(age)


if age >= 18  and age <= 22:
    print('Welcome to Egypt scholarship program')
elif age < 18:
    print('You are too young')
elif age > 22:
    print('You are too old ')

3 Likes

نعم مناسب جداً !

1 Like
x=int(input("Enter your age:"))
if x == 15 :
    print("you are too young")
elif x == 25:
    print("you are too old")
elif x == 20 :
    print("Welcome to Egypt scholarship program")
1 Like

age = input("Age: ")
age = int(age)
if age == 15:
print(“You are too young”)
elif age == 25:
print(“You are too old”)
elif age == 20:
print(“Welcome to Egypt scholarship program”)

2 Likes

مهمة تطبيق التقديم على المنح

age=input()
age=int(age)

if age<18:
    print('You are too young')
    
elif age>22:
    print('You are too old')
    
else:
    print('Welcome to Egypt scholarship program')
2 Likes

عمل مضبوط :+1:

2 Likes