اقتباس:
	
	
		| 
					المشاركة الأصلية كتبت بواسطة ابو محمد 2
					  هل لو تم كتابة السودوكود بالشكل التالي يعتبر صح
اكتب سود وكود لحساب حاصل جمع أول 50 رقم فردي صحيح
1- initialize the sum:sum = 0
 2- initialize the n, and t:
 n = 0
 t= 1
 3- add the new term to sum:
 sum = sum + t
 4- increment n by 1, and  t value by 2:
 n=n+1
 t = t + 2
 5- if n =50 then
 print sum
 else
 perform steps 3 through 4 untiln = 50
 end if
 6- stop processing
 
او 
اكتب سود وكود لحساب حاصل جمع أول 50 رقم فردي صحيح 1-   sum = 02-
 n = 0
 t= 1
 3-
 sum = sum + t
 4-
 n=n+1
 t = t + 2
 5- if n =50 then
 print sum
 else
 perform steps 3 through 4 untiln = 50
 end if
 6- stop
 
وجزاكم الله خيراً | 
	
 فقط استبدل الالوان الازرث مكان الاحمر