• We need your support!

    We are currently struggling to cover the operational costs of Xtremepapers, as a result we might have to shut this website down. Please donate if we have helped you and help make a difference in other students' lives!
    Click here to Donate Now (View Announcement)

Search results

  1. badrobot14

    I feel sorry, so here I fixed ur code 4 u: Dim n1, n2, n3, n4, n5, greatest As Integer...

    I feel sorry, so here I fixed ur code 4 u: Dim n1, n2, n3, n4, n5, greatest As Integer n5 = 34 n1 = 3 If n1 > n2 And n1 > n3 And n1 > n4 And n1 > n5 Then greatest = n1 ElseIf n2 > n1 And n2 > n3 And n2 > n4 And n2 > n5 Then
  2. badrobot14

    b/w I orignally came to say nice avatar.. but well I found programming her so that attracted...

    b/w I orignally came to say nice avatar.. but well I found programming her so that attracted me,, x_x
  3. badrobot14

    seriously.. n what's wrong with trying the array thing..? array is a list so it checks each item...

    seriously.. n what's wrong with trying the array thing..? array is a list so it checks each item in list using a for loop and if that item(i.e. numbr) is gr8er it selects that one as greatest until end of list u have ur gr8est num in hand... havn't u guys studied loops..?
  4. badrobot14

    wht do u mean 2 boxes...?

    wht do u mean 2 boxes...?
  5. badrobot14

    Try this in vb6: Dim greatest As Integer Dim array(5) As Integer array(0) = 3 array(1) = 2...

    Try this in vb6: Dim greatest As Integer Dim array(5) As Integer array(0) = 3 array(1) = 2 array(2) = 1 array(3) = 5 array(4) = 6 For i As Integer = 0 To array.Length-1 If array(i) > greatest Then greatest = array(i)) End If Next MsgBox(greatest)
  6. badrobot14

    try it obviously change messagebox.show to msgbox(fsdfsf) etc... the idea is u loop through a...

    try it obviously change messagebox.show to msgbox(fsdfsf) etc... the idea is u loop through a list n see which is the greatest... and if u find greater num u take it as greatest... I did it in vb6 too but that was years ago..
  7. badrobot14

    Dim list As New List(Of Integer) list.Add(2) list.Add(3) list.Add(7) Dim num As Integer Dim...

    Dim list As New List(Of Integer) list.Add(2) list.Add(3) list.Add(7) Dim num As Integer Dim greatest As Integer greatest = 0 For Each num In list If num > greatest Then greatest = num End If Next MessageBox.Show(greatest)
  8. badrobot14

    look, this is stupid way of finding greatest num (no offence) a better way is to use for each...

    look, this is stupid way of finding greatest num (no offence) a better way is to use for each loop: I can give u a sample prog I just made in vb.net.. there is little difference in syntax
  9. badrobot14

    are u using VB.net..?

    are u using VB.net..?
  10. badrobot14

    you rightclick it n select 7zip>add to [folder name].z7 why wd that give troubles..? or u can...

    you rightclick it n select 7zip>add to [folder name].z7 why wd that give troubles..? or u can try add to archive option and then have file made on desktop.. b/w does 7zip give u an error..?
  11. badrobot14

    :p

    :p
  12. badrobot14

    ur welcome.. b/w Experienced One u r supposed to compress n upload... she is supposed to dwnld...

    ur welcome.. b/w Experienced One u r supposed to compress n upload... she is supposed to dwnld using orbit ( www.orbitdownloader.com ) and then extract it using 7zip. P.S. 7zip is the best compression software I know off...
  13. badrobot14

    so ur gonna ignore meee..? </3 (ok m kidding.. :D it's coz u can't ignore members of moderation...

    so ur gonna ignore meee..? </3 (ok m kidding.. :D it's coz u can't ignore members of moderation staff.. we have to inform ppl of stuff etc so imp that ppl can't ignore us...)
  14. badrobot14

    jazakillah khair.. :)

    jazakillah khair.. :)
  15. badrobot14

    dwnld: http://www.7-zip.org/download.html then rightclick folder n compress in 7z format...

    dwnld: http://www.7-zip.org/download.html then rightclick folder n compress in 7z format.. upload it here www.putlocker.com and snd the link in e-mail to ur frnd.. ask her to use a dwnload manager (like orbit downlader which is free or IDM etc) so that she dwnlds at max speed using the dwnld...
  16. badrobot14

    mech.

    mech.
  17. badrobot14

    O.o u n misbehavin..? when did that happpen..? seriously.. no need to b sorry.

    O.o u n misbehavin..? when did that happpen..? seriously.. no need to b sorry.
  18. badrobot14

    ah.. sorry sis.. really sorry I forgot.

    ah.. sorry sis.. really sorry I forgot.
  19. badrobot14

    hahaaha.. ok, that is weird.. anyway y care so much about likes..? if I cared about likes I'd...

    hahaaha.. ok, that is weird.. anyway y care so much about likes..? if I cared about likes I'd robably be the most arrogant idiot here... coz I have far too many of those.. 10000+ :O Now, if only likes could b traded for candies.. now that wd b something..!
  20. badrobot14

    lol.. I kno it was C coz we have studied c... printf with a semicolon at end is typical C... a...

    lol.. I kno it was C coz we have studied c... printf with a semicolon at end is typical C... a printf without a semicolon wd have been VB (have learnt that too) in C++ u wd have used cout<< (or something like that instead of printf.. have forgotten much programming coz I mainly use C# whn I...
Top