Forum: C# Apr 17th, 2009 |
| Replies: 7 Views: 5,093 I tried that new bit of code and it just prints out the same line twice, which is row 3 when it should print out rows 3 and 4. Here is the code im working with..I added another row, so there are two... |
Forum: C# Apr 16th, 2009 |
| Replies: 7 Views: 5,093 Yes JerryShaw thats exactly what i was looking for, thanks! Just curious what if I wanted to find more then one row that had the name "Lance" in it? |
Forum: C# Apr 16th, 2009 |
| Replies: 7 Views: 5,093 How would I find a row with a column value? Say Im looking for people with the name "Lance" then once ive found Lance display the row of info for lance. Ive tried using select but cant seem to get... |
Forum: C# Feb 20th, 2009 |
| Replies: 3 Views: 383 is there a way to pass in numbers(int) like this?
somename([0,0],[2,4],3);
thanks for any help |
Forum: C# Feb 11th, 2009 |
| Replies: 4 Views: 573 Is it possible to input numbers into two different arrays like so,
1 2 3 4 5 6 7 8 9
where the first array would hold {1, 3, 5, 7, 9}
and the second array would hold {2, 4, 6, 8}? |
Forum: C# Feb 10th, 2009 |
| Replies: 1 Views: 318 I want to enter in a bunch of integers like so:
1 11 2 12 3 13 4 14 5 56 6 80...
How would I get them into an array of int?
Console.WriteLine("Enter in numbers");
string answer =... |
Forum: C# Feb 5th, 2009 |
| Replies: 1 Views: 670 Trying to make a circular queue, but its not working right. Enqueue is just adding things to the end, every time.
my output is:
Numbers in Queue: 1 2 3
Numbers in Queue: 2 3
Numbers in... |
Forum: C# Jan 30th, 2009 |
| Replies: 4 Views: 522 |
Forum: C# Jan 30th, 2009 |
| Replies: 4 Views: 522 Im trying to make a circular queue. Why does empty keep saying my q is empty?
using System;
namespace CQueue
{
class Program
{
static void Main(string[] args)
{ |