تقييم الموضوع :
  • 0 أصوات - بمعدل 0
  • 1
  • 2
  • 3
  • 4
  • 5
لانشاء رقم عشوائي
#1
كاتب الموضوع : AhmedEssawy

لانشاء رقم عشوائي في حدود مدي integer

كود :
'Instantiate the random class

Dim r As Random = New Random


'


'Get a random number within the full range of a integer value.


MsgBox(r.Next())
لانشاء رقم بين الصفر و العشرين

كود :
'Generates a random number from 0 up to the set maximum. It is

'set not to return a number larger than 20.


MsgBox(r.Next(20))
لانشاء رقم بين العشر و العشرين

كود :
'Generates a random number within the minumum and maximum

'numbers that are specified. IT will not return a number lower


'than the setMinumum, or return a number higher than the setMax.


MsgBox(r.Next(10, 15))
}}}
تم الشكر بواسطة:



التنقل السريع :


يقوم بقرائة الموضوع: بالاضافة الى ( 1 ) ضيف كريم