Summary: hello everyone. i am playing around with generating prime numbers using the isProbablePrime function in the BigInteger class. However, I would like ...
Summary: Does anyone know an efficient way to take out duplicate values in an array? I have a web page that queries a dtabase and get a long list of keywords ...
Summary: Then if need a multidimentional array like the following program with variable such as: "$myvar[2][3]" $i=0; while () { $i++; ($V[1][$i],$V[2][$i],$...
Summary: The question tells you to use a single-subscripted array. You are to read in 20 numbers, each of which is between 10 and 100, inclusive. As each numbe...
Summary: I am working on a student exam system for a college project but got stuck!! Help me anyone if you can. My problem is: I created a text file called exa...
Summary: Can anyone please tell me how to put a string of text in to a char array so that each letter of the string fills each element of the array. ...
Summary: Hi All! I am using: VBasic.NET I want to fill an array with names of my students. I can get the contents from a text file with each name on a differen...
Summary: Hi, I don't know how to do the following because I don't know how to use the string array in C++. Please Help!!! Thanx! #include <iostream.h> #incl...
Summary: hi... I'm a beginner in programming with C++ I want to know how can I use the standard functions of C++ that is used by character array... till now ...
Summary: hi.. im quite new in java.. wondering if anyone can help me out. iv got users to enter a string of numbers using JOptionPane.showInputDialog. i then ...
Summary: Hi, I just want a basic rundown of how to declare and resize a dynamic array in C++ (I looked at the help file, and theres nothing specifically on thi...
Summary: I am new to Vb and trying to create an array to hold 10000 numbers. I must use a random number generator to load the array with alues. Display the fir...
Summary: hello, how do i distribute data from an array into a single variable? one possibility is: int num1 = myArray[3]; int num2 = myArray[2]; int num3 = myA...
Summary: Hi, I have a user interface that contains 4x4 matrix (ie. 16 text boxes). Each text box will ask the user to key in a floating point number (eg. 0.25)...
Summary: I would like to have a function whose array size depends on one of the parameters. Obviously, C is not allowing this, since array sizes must be determ...
Summary: Hi there, I want to count the amount of lines in a txt file,then create an array(based on the amount of lines) then read the numbers from that txt fil...
Summary: Hi, I've a web application written in asp.net & I need to refer to a web form control(<asp:Label> control, in specific) which is placed within the ...
Summary: I have a class that i need to have format an array of strings so that I can use it later to populate a list view control in VC++ dotnet. I keep havin...
Summary: im at a bit of a loss here. I never had to work with strings, so forgive me if it is trivial: i want to have an array of strings in C++, for example:...
Summary: Yes, this question is regarding an assignment, but I have been killing myself for several days trying to find a solution. The programs is one that we...
Summary: how can I write a function to compare if an array A[] is subset of an array B[]. ex. if I have A[]= {1,2,3} and B[]= {1,2,3,4,5} then my function retu...