ما اعرف بالضبط وين انزل الموضوع قلت هذا ان شاء الله انسب ركن ..
عموما هذا واجب لصاحب لي طلب مني اساعده
لا هنتم اي حد عنده خلفية عن حله يكتب الحل وله مني دومين من اختياره او قيمة الدومين
تفضلوا هذا السؤال
رمز PHP:
cls
input"enter a string contating the word loop:" , s$
print
location =0
for x = 1 to len (s$)
if mid$ (s$,x,4)= " loop" then location =x
next x
if location =0 then
print "word loop not found "
else
print s$
for x =1 to location -1
print " " ;
next x
print ""
end if
....
input"enter a string contating the word loop:" , s$
location =0
for x = 1 to len (s$)
if mid$ (s$,x,4)= " loop" then location =x
next x
if location =0 then
print "word loop not found "
else
print s$
for x =1 to location -1
print " " ;
next x
print ""
end if
....
هاذي أوامر برمجية .. لبرنامج يبحث عن كلمة loop في الجمله ويحط تحتها مؤشر .....
المطلوب مني ..:
أسوي نفس هذا البرنامج بس ما يبحث عن كلمة وحده فقط ... يبحث عن كل كلمات loop الموجوده ويحط تحتها المؤشر ..