Programming › Re: Help With Sudoku Puzzle Generator by kheme(op): 8:14pm On Apr 05, 2009 |
tried ya code, still didnt work man! |
Programming › Re: Help With Sudoku Puzzle Generator by kheme(op): 7:14pm On Feb 23, 2009 |
ok, i'd see if i can convert the java codes into vb. thanks for the input! |
Programming › Re: Post Ur Vb.net Questions Here by kheme(m): 4:04pm On Feb 21, 2009 |
hi. i'm trying to write a sudoku puzzle generator with vb.net but my algorithm seems correct, but runs out of numbers at some stages while generating the puzzle. can anyone look into ma code and see why? Public Class home Public rp = 0, arr(8, As Integer, rsv(8, As List(Of Integer), ax(2, 2)
Public Function sot(ByRef ar As Array) Dim o, p, q, r For o = 0 To 8 If (ar(o) = Nothing) Then For p = o To 1 Step -1 q = ar(p) r = ar(p - 1) ar(p) = r ar(p - 1) = q Next End If Next Return Nothing End Function
Public Function rnd(ByVal x As Integer, ByVal y As Integer) Dim r1 = Nothing, rd As New Random For a As Integer = 0 To 8 If (arr(x, a) <> 0 And rsv(x, y).IndexOf(arr(x, a)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(x, a))) End If
If (arr(a, y) <> 0 And rsv(x, y).IndexOf(arr(a, y)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a, y))) End If Next
If (x >= 0 And x <= 2 And y >= 0 And y <= 2) Then For a1 As Integer = 0 To 2 For b1 As Integer = 0 To 2 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If If (x >= 0 And x <= 2 And y >= 3 And y <= 5) Then For a1 As Integer = 0 To 2 For b1 As Integer = 3 To 5 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If If (x >= 0 And x <= 2 And y >= 6 And y <= Then For a1 As Integer = 0 To 2 For b1 As Integer = 6 To 8 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If
If (x >= 3 And x <= 5 And y >= 0 And y <= 2) Then For a1 As Integer = 3 To 5 For b1 As Integer = 0 To 2 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If If (x >= 3 And x <= 5 And y >= 3 And y <= 5) Then For a1 As Integer = 3 To 5 For b1 As Integer = 3 To 5 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If If (x >= 3 And x <= 5 And y >= 6 And y <= Then For a1 As Integer = 3 To 5 For b1 As Integer = 6 To 8 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If
If (x >= 6 And x <= 8 And y >= 0 And y <= 2) Then For a1 As Integer = 6 To 8 For b1 As Integer = 0 To 2 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If If (x >= 6 And x <= 8 And y >= 3 And y <= 5) Then For a1 As Integer = 6 To 8 For b1 As Integer = 3 To 5 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If If (x >= 6 And x <= 8 And y >= 6 And y <= Then For a1 As Integer = 6 To 8 For b1 As Integer = 6 To 8 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If
Try arr(x, y) = rsv(x, y)(rd.Next(0, rsv(x, y).Count)) Catch ex As Exception
End Try Return Nothing End Function
Private Sub home_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim a = 0, b = 0, c = 0, n For a = 0 To 8 For b = 0 To 8 n = "s" & a & b rsv(a, b) = New List(Of Integer) For c = 1 To 9 rsv(a, b).Add(c) Next rnd(a, b) Panel2.Controls.Item(n).text = arr(a, b) Next Next
End Sub
Private Sub RefreshToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RefreshToolStripMenuItem.Click rp = 0 Array.Clear(arr, 0, 81) home_Load(Nothing, Nothing) End Sub End Class
i've attached screen shots, the "0" in the puzzle are the places where the algorithm runs out of numbers to put cos the next number to put cannot be placed there due to the rules of sudoku. i need help guys!
|
Programming › Re: Post Ur Vb 6.0 Questions Here by kheme(m): 4:02pm On Feb 21, 2009 |
hi. i'm trying to write a sudoku puzzle generator with vb.net but my algorithm seems correct, but runs out of numbers at some stages while generating the puzzle. can anyone look into ma code and see why? Public Class home Public rp = 0, arr(8, As Integer, rsv(8, As List(Of Integer), ax(2, 2)
Public Function sot(ByRef ar As Array) Dim o, p, q, r For o = 0 To 8 If (ar(o) = Nothing) Then For p = o To 1 Step -1 q = ar(p) r = ar(p - 1) ar(p) = r ar(p - 1) = q Next End If Next Return Nothing End Function
Public Function rnd(ByVal x As Integer, ByVal y As Integer) Dim r1 = Nothing, rd As New Random For a As Integer = 0 To 8 If (arr(x, a) <> 0 And rsv(x, y).IndexOf(arr(x, a)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(x, a))) End If
If (arr(a, y) <> 0 And rsv(x, y).IndexOf(arr(a, y)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a, y))) End If Next
If (x >= 0 And x <= 2 And y >= 0 And y <= 2) Then For a1 As Integer = 0 To 2 For b1 As Integer = 0 To 2 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If If (x >= 0 And x <= 2 And y >= 3 And y <= 5) Then For a1 As Integer = 0 To 2 For b1 As Integer = 3 To 5 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If If (x >= 0 And x <= 2 And y >= 6 And y <= Then For a1 As Integer = 0 To 2 For b1 As Integer = 6 To 8 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If
If (x >= 3 And x <= 5 And y >= 0 And y <= 2) Then For a1 As Integer = 3 To 5 For b1 As Integer = 0 To 2 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If If (x >= 3 And x <= 5 And y >= 3 And y <= 5) Then For a1 As Integer = 3 To 5 For b1 As Integer = 3 To 5 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If If (x >= 3 And x <= 5 And y >= 6 And y <= Then For a1 As Integer = 3 To 5 For b1 As Integer = 6 To 8 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If
If (x >= 6 And x <= 8 And y >= 0 And y <= 2) Then For a1 As Integer = 6 To 8 For b1 As Integer = 0 To 2 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If If (x >= 6 And x <= 8 And y >= 3 And y <= 5) Then For a1 As Integer = 6 To 8 For b1 As Integer = 3 To 5 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If If (x >= 6 And x <= 8 And y >= 6 And y <= Then For a1 As Integer = 6 To 8 For b1 As Integer = 6 To 8 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If
Try arr(x, y) = rsv(x, y)(rd.Next(0, rsv(x, y).Count)) Catch ex As Exception
End Try Return Nothing End Function
Private Sub home_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim a = 0, b = 0, c = 0, n For a = 0 To 8 For b = 0 To 8 n = "s" & a & b rsv(a, b) = New List(Of Integer) For c = 1 To 9 rsv(a, b).Add(c) Next rnd(a, b) Panel2.Controls.Item(n).text = arr(a, b) Next Next
End Sub
Private Sub RefreshToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RefreshToolStripMenuItem.Click rp = 0 Array.Clear(arr, 0, 81) home_Load(Nothing, Nothing) End Sub End Class
i've attached screen shots, the "0" in the puzzle are the places where the algorithm runs out of numbers to put cos the next number to put cannot be placed there due to the rules of sudoku. i need help guys!
|
Programming › Help With Sudoku Puzzle Generator by kheme(op): 4:01pm On Feb 21, 2009 |
hi. i'm trying to write a sudoku puzzle generator with vb.net but my algorithm seems correct, but runs out of numbers at some stages while generating the puzzle. can anyone look into ma code and see why? Public Class home Public rp = 0, arr(8, As Integer, rsv(8, As List(Of Integer), ax(2, 2)
Public Function sot(ByRef ar As Array) Dim o, p, q, r For o = 0 To 8 If (ar(o) = Nothing) Then For p = o To 1 Step -1 q = ar(p) r = ar(p - 1) ar(p) = r ar(p - 1) = q Next End If Next Return Nothing End Function
Public Function rnd(ByVal x As Integer, ByVal y As Integer) Dim r1 = Nothing, rd As New Random For a As Integer = 0 To 8 If (arr(x, a) <> 0 And rsv(x, y).IndexOf(arr(x, a)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(x, a))) End If
If (arr(a, y) <> 0 And rsv(x, y).IndexOf(arr(a, y)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a, y))) End If Next
If (x >= 0 And x <= 2 And y >= 0 And y <= 2) Then For a1 As Integer = 0 To 2 For b1 As Integer = 0 To 2 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If If (x >= 0 And x <= 2 And y >= 3 And y <= 5) Then For a1 As Integer = 0 To 2 For b1 As Integer = 3 To 5 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If If (x >= 0 And x <= 2 And y >= 6 And y <= Then For a1 As Integer = 0 To 2 For b1 As Integer = 6 To 8 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If
If (x >= 3 And x <= 5 And y >= 0 And y <= 2) Then For a1 As Integer = 3 To 5 For b1 As Integer = 0 To 2 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If If (x >= 3 And x <= 5 And y >= 3 And y <= 5) Then For a1 As Integer = 3 To 5 For b1 As Integer = 3 To 5 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If If (x >= 3 And x <= 5 And y >= 6 And y <= Then For a1 As Integer = 3 To 5 For b1 As Integer = 6 To 8 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If
If (x >= 6 And x <= 8 And y >= 0 And y <= 2) Then For a1 As Integer = 6 To 8 For b1 As Integer = 0 To 2 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If If (x >= 6 And x <= 8 And y >= 3 And y <= 5) Then For a1 As Integer = 6 To 8 For b1 As Integer = 3 To 5 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If If (x >= 6 And x <= 8 And y >= 6 And y <= Then For a1 As Integer = 6 To 8 For b1 As Integer = 6 To 8 If (arr(a1, b1) <> Nothing And rsv(x, y).IndexOf(arr(a1, b1)) <> -1) Then rsv(x, y).RemoveAt(rsv(x, y).IndexOf(arr(a1, b1))) End If Next Next End If
Try arr(x, y) = rsv(x, y)(rd.Next(0, rsv(x, y).Count)) Catch ex As Exception
End Try Return Nothing End Function
Private Sub home_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim a = 0, b = 0, c = 0, n For a = 0 To 8 For b = 0 To 8 n = "s" & a & b rsv(a, b) = New List(Of Integer) For c = 1 To 9 rsv(a, b).Add(c) Next rnd(a, b) Panel2.Controls.Item(n).text = arr(a, b) Next Next
End Sub
Private Sub RefreshToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RefreshToolStripMenuItem.Click rp = 0 Array.Clear(arr, 0, 81) home_Load(Nothing, Nothing) End Sub End Class
i've attached screen shots, the "0" in the puzzle are the places where the algorithm runs out of numbers to put cos the next number to put cannot be placed there due to the rules of sudoku. i need help guys!
|
|
Family › Re: To Braid Or Not To Braid!?! by kheme(op): 7:50pm On Oct 27, 2008 |
@EbonyMerma: thumbs up for you, u be my person! |
Family › Re: To Braid Or Not To Braid!?! by kheme(op): 4:26am On Oct 24, 2008 |
lol. ok, now that's the next question: WHY IS IT NOT GENERALLY ACCEPTABLE!?
thanks guys! |
Travel › Re: Decongesting Lagos: Any Suggestions? by kheme(m): 4:16pm On Oct 18, 2008 |
congestion charges, like in the UK |
Family › Re: To Braid Or Not To Braid!?! by kheme(op): 4:15pm On Oct 18, 2008 |
Come to think about it, is it only in Nigeria that we regard males with braid as irresponsible? YES!!!! and i think Obama might look cool on it though! but one thing i want you guys to think about is this, today, some group of people may start braiding hair ( i mean guys) and then, somehow, it gets wide-spread! then who knows, takes over the world, and that becomes the standard, do you realize that if this happens, GUYS WITH NORMAL HAIR CUTS WILL BE CONSIDERED AS IRRESPONSIBLE! think bout it! so well then, perhaps, i have no culture, cos i do what i'm comfortable with! i won't pierce ma ear (or at least, i'm not convinced to) and i dont think people that do are "irresponsible" either! but that's what i'm comfortable with. well the, i get, the "nigerian culture" regard such guys are irresponsible, right? i need to UNDERSTAND why! |
Family › Re: To Braid Or Not To Braid!?! by kheme(op): 8:53pm On Oct 14, 2008 |
|
TV/Movies › Re: Which Movie Character Would You Play? by kheme(m): 8:49pm On Oct 14, 2008 |
TOM CRUSE in MI2 |
Family › Re: To Braid Or Not To Braid!?! by kheme(op): 11:34am On Oct 13, 2008 |
so i guess anyone with a different culture is irresponsible? or the CULTURE says that such act is irresponsible?!? |
Family › Re: To Braid Or Not To Braid!?! by kheme(op): 11:33am On Oct 13, 2008 |
ummm, |
Family › Re: To Braid Or Not To Braid!?! by kheme(op): 12:15pm On Oct 11, 2008 |
If you're Nigerian, you should understand that a man with braids is being looked at as irresponsible, my question is WHY  |
Family › Re: To Braid Or Not To Braid!?! by kheme(op): 7:13pm On Oct 09, 2008 |
@davidylan*: lol, you're funny! but you know how it does on nairaland, from the initial topic, it deviates! my originial question, or at least, what my original question was meant to be was, HOW DOES THE BRAIDING THINGY MAKE PEOPLE LOOK IRRESPONSIBLE? or do i say, what does the hair style have to do with your personality altogether? i've always known this right from nigeria, that the moment i start making ma hair or keeping long hair, people are gonn say stuff like that, you look irresponsible! so i'm "trying" to understnad what's up with this kinda thinking, you know! besides, i love the attention, ehehehe  |
Family › Re: To Braid Or Not To Braid!?! by kheme(op): 6:59pm On Oct 09, 2008 |
yea, i'm black, nigerian, a guy, not in nigeria and i braid my hair! look at my profile pic ( https://www.nairaland.com/nigeria?action=profile;u=25958) ! and yea, it's NORMAL braids (i'm thinking of bob marley sha  ) well, if there was a problem with my passport and the hair, then i the british embassy should have refused it, right? see, just because people don't like certain things just doesn't make them wrong! i still don't get the idea! and HOW, i mean "how" does a guy braiding his hair make him irresponsible? @Ezinwannem: i live MY life, not the life of the people here! i'm the pioneer of guys making their hair in my area, so i'm not living up to any style or vogue or something, they're living up to mine!  what else can i say? |
Webmasters › Re: What's Your Own Website Address? by kheme(m): 10:17am On Oct 07, 2008 |
www,htmlonline,tk |
Webmasters › Re: Website Review Please - All Comments Welcome! by kheme(op): 10:15am On Oct 07, 2008 |
thanks. more comments please, guys.  |
Romance › Re: What Is It With Women? by kheme(op): 10:07am On Oct 02, 2008 |
well, i just realised that most guys easily misunderstand girls, when they're just trying to be friendly. but sometimes, the girls go too far with it! |
Family › To Braid Or Not To Braid!?! by kheme(op): 8:52am On Oct 02, 2008 |
my dad just called me one night and was like, "that passport photograph you sent, i really don't like it! you know the kind of man i am, and people will expect that my children shouldn't do those kind of things! if you want braid your hair, do that THERE, it's ok; but when it comes to passport photograph for permanent things like international passport, or whatever, please don't do that. i just wanted to let you know that i'm not happy!" so em, what's wrong with me braiding ma hair? and since when did hair styles become a fault or crime in passport photos? i mean, it's the same passport photo in which i braided my hair that's on my british visa. i never came across any passport rule that says "no hair styles" i mean, what difference does it make, skin cut, afro, low cut or braids, hair is hair, and my FACE is what's needed! so what the hell is wrong with the braiding of hair? yea, i know that in nigeria, they're think am irresponsible and stuff (and i REALLY don't know why), but over here, THEY LOVE IT! i get favours cos of my braided hair, and i even look better on braids  so what's the big deal? perhaps, there's something i'm missing here. cos people are begging me to cut the hair, though they still say it looks good. so, what am i missing here  |
Webmasters › Website Review Please - All Comments Welcome! by kheme(op): 8:36am On Oct 02, 2008 |
|
Romance › Re: What Is It With Women? by kheme(op): 12:45pm On Sep 24, 2008 |
you guys are crazy, you guys are something else! |
Romance › Re: What Is It With Women? by kheme(op): 12:42pm On Sep 24, 2008 |
omg! rotflmbao! |
Romance › Re: What Is It With Women? by kheme(op): 8:34am On Sep 23, 2008 |
@lonelypal: funny enough, i can predict most of the girls around me like 86% of the time.
@stillwater: HAPPY BIRTHDAY! |
Webmasters › Re: Help Me With Hyperlinks by kheme(m): 5:27pm On Sep 20, 2008 |
|
Webmasters › Re: What's Your Own Website Address? by kheme(m): 4:40pm On Sep 20, 2008 |
www(dot)htmlonline(dot)tk |
Webmasters › Re: Get Your Website Reviewed Here by kheme(m): 4:37pm On Sep 20, 2008 |
www(dot)htmlonline(dot)tk |
Webmasters › Re: Domain Search Tool Needed by kheme(m): 4:17pm On Sep 20, 2008 |
well, do you know PHP? i have a little php script that you can use. simple use the php open() function. eg. open(" http://www.domainnametocheck.com"); if it returns an error, then the domain doesnt exist, if it returns true (as in success), then the domain exists. simple! i've used it and it works, but if you want more functionality, then you'd have to use more complicated scripts i guess. |
Fashion › How Do You Describe A Perfume Who's Name You Do Not Know? by kheme(op): 8:29am On Sep 20, 2008 |
ok, imagine this, you're at a perfume shop and you need to buy a perfume; now HOW do you describe the perfume if you DON'T know the name  |
Romance › Re: What Is It With Women? by kheme(op): 10:44pm On Sep 18, 2008 |
omg! rotflmbao!!!! |
Romance › Re: What Is It With Women? by kheme(op): 10:08pm On Sep 18, 2008 |
ok, might i add another experience here: there's this other girl and she happened to get close to some guy. i'm a very good observer: this guy had feelings for the girl, and this girl says she HAD NO IDEA that he was feeling for her! and, this girl will come to this guy, sitting on his legs, hugging him, putting her arms all around him, putting his hands all around her, playing with him so much, and she tells me that she STILL EXPECTED HIM NOT TO FEEL ANYTHING!!!!!!! man, how can a woman be soooooo phuking physical with a man, and expect him NOT TO FEEL anything towards her  ? this is just my most recent experience. there are others that i do recall of girls being phyisical with some guy and expecting the guy NOT to feel anytihng towards her! now explain that too! |