Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. invalid6363

    Connection Ruby program to databse

    I have made a GUI application using Ruby\FXRuby and i would like to be able to connect it to a database to save the data that is entered in the application. It's a simple application that saves a person's contacts (name, address, email, etc.). I'm trying to use SQLite3 but i have not been able...
  2. invalid6363

    Need help creating edges between all vertices

    I'm trying to create a graph with 'n' vertices and create edges between all the vertices. Here is the code for adding vertices and edges: private static void setVertices(int n) { int vertexLength = n; /* Add vertices */ for(int i = 0; i < vertexLength; i++) {...
  3. invalid6363

    Trouble with accepting user input

    hello, i'm new to ruby and i'm trying a to write a simple greeting program that accepts input from the user (user's name) but its not completely working the way i would like it to. It doesn't print out the goodbye messages and doesn't work when nothing is typed in (Hello World should print out)...
  4. invalid6363

    Need help creating multithreaded program

    i'm trying to do one of the exercises from my OS book. the exercise is about creating a multithreaded solution that performs matrix multiplication.(A[i,j] x B[i,j]= C[i,j]) it says that for this exercise you need to calculate each element C[i,j] in a separate worker thread. This will involve...
  5. invalid6363

    help with arranging flags program

    i'm trying to learn prolog and one of the problems that i am trying to do is the following: Write a Prolog program that takes the total number of flags of each color and some initial arrangement of flags. The initial arrangement may be empty, or it may specify that certain positions in the line...
  6. invalid6363

    formating character lenght of a line in a txt file

    i need help on writing some code that will take each line of a file and determine if it contains the right length of characters for each line (150 max). Each line in the file contains 5 fields and has an assigned number of characters: name (0-49) address (50-59) phone number (60-73) status...
  7. invalid6363

    Searching for a pattern in a list

    i'm trying to write a predicate that takes a list and a pattern and determines if the pattern exists in the list. for example: list = [r,r,b,g,y] pattern = r,r occurs([X,Y|_],X,Y). occurs([_|L],X,Y) :- occurs(L,X,Y). this kind of works for a pattern of two, but if the...
  8. invalid6363

    how do i duplicate items in a list?

    i need help on how to write a predicate that will duplicate the items in a list, where the left argument is a list and whose right argument is a list consisting of every element in the left list written twice.

Part and Inventory Search

Back
Top