• 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

    itachi n cool..? he is evil..agree with etu, kakashi is awesome.. esp how he always comes up...

    itachi n cool..? he is evil..agree with etu, kakashi is awesome.. esp how he always comes up with genius stuff whn fightin.... I remember watchin him against that pein guy... *_*
  2. badrobot14

    ws wr wb sister, yeah,... I guess I might have.. :( Sorry. the thing is I have a bit of wrk to...

    ws wr wb sister, yeah,... I guess I might have.. :( Sorry. the thing is I have a bit of wrk to do these days.. uni work (n I laredy waste enough tym here). but I think u come online less frequently too! anyway do visit the art of grooming thread coz I do try to keep a presence there... n I'll...
  3. badrobot14

    *~*~♦ тнᴇ αят ᴏƒ ɢяᴏᴏмɪɴɢ уᴏυя ѕᴏυʟѕ ♦~*~*

    Really, I don't understand why ppl don't get it this..?! https://www.youtube.com/watch?v=DlWlMWybdJw Office wrk may be fine in some cases but I feel sorry it whn I see women doing feild work.. It's just harsh and dangerous.. :/
  4. badrobot14

    yes... busy... gotta make a report.. gotta go. :/

    yes... busy... gotta make a report.. gotta go. :/
  5. badrobot14

    *~*~♦ тнᴇ αят ᴏƒ ɢяᴏᴏмɪɴɢ уᴏυя ѕᴏυʟѕ ♦~*~*

    Nouman Ali Khan... :) https://www.youtube.com/watch?v=hAtXXisyjeY
  6. badrobot14

    ur welcome.... I so like programming it's a shame I don't teach it..but well, I don't have tym...

    ur welcome.... I so like programming it's a shame I don't teach it..but well, I don't have tym either..
  7. badrobot14

    code: https://docs.google.com/open?id=0B4KwYEPJqJnMc1Q4ZmYyRGV2aG8 running prog...

    code: https://docs.google.com/open?id=0B4KwYEPJqJnMc1Q4ZmYyRGV2aG8 running prog: https://docs.google.com/open?id=0B4KwYEPJqJnMdUgxRnU3cDZSdDg
  8. badrobot14

    oh n no need for enter b4 then.. I must b sleepin

    oh n no need for enter b4 then.. I must b sleepin
  9. badrobot14

    NO!!! that was ur mistake.. m using elseif statement which is a continuation of ur first IF...

    NO!!! that was ur mistake.. m using elseif statement which is a continuation of ur first IF statement.... no need for stupid end if's... just one is needed
  10. badrobot14

    sure, np.

    sure, np.
  11. badrobot14

    (put enter b4 'then')

    (put enter b4 'then')
  12. badrobot14

    greatest = n2 ElseIf n3 > n1 And n3 > n2 And n3 > n4 And n3 > n5 Then...

    greatest = n2 ElseIf n3 > n1 And n3 > n2 And n3 > n4 And n3 > n5 Then greatest = n3 ElseIf n4 > n1 And n4 > n2 And n4 > n3 And n4 > n5 Then greatest = n4 Else greatest = n5 End If MsgBox(greatest)
  13. 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
  14. 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
  15. 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..?
  16. badrobot14

    wht do u mean 2 boxes...?

    wht do u mean 2 boxes...?
  17. 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)
  18. 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..
  19. 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)
  20. 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
Top