0
votes
3answers
64 views
Anagram Hash Function
I know something like this has been asked before, but the answer was sort of side tracked.
I want to develop a hash function which will take a word and spit out an address of an a …
0
votes
2answers
156 views
Secret Santa homework - How to start? [closed]
Possible Duplicate:
Secret santa algorithm.
Hi. I've got the following task by my professor: I should write a Secret Santa application. As Input is given the number of par …
2
votes
6answers
165 views
Format a string in C
Normally you can print the string in C like this..
printf("No record with name %s found\n", inputString);
But i wanted to make a string out of it, how i can do it? I am looking …
1
vote
4answers
91 views
a question about a design
My teammates and I have a very challenging new project to do, and we are supposed to submit it next week. We don't have a single clue about how to do it, and really need help. We a …
0
votes
9answers
152 views
Duplicate Elimination
hi every body
i have problem with this question
Duplicate Elimination
Use a one-dimensional array to solve the following problem: Write an application that inputs 10 integers. A …
0
votes
2answers
43 views
2d ArrayList in Java adding data
I need little help on a homework assignment. I have to create a 10 by 10 ArrayList, not an array that would make too much sense. This is what I have and I just need a hint on how t …
-3
votes
4answers
69 views
Python - read in numric csv file, calc mean value of all entries in each row
Hi, could someone help me with a Python problem. I cant seem to find any code examples for the following scenario:
Read in user specified csv file.
Then for each row in file, calc …
0
votes
3answers
37 views
Selecting objects contined in an Arraylist (c#)
Im working on a project for homework where I have an Arraylist containing objects of 5 strings. I know how to select items of the array list (using an index value) but not how to a …
-1
votes
6answers
150 views
Why am I getting null on this code?
This is a part of my source (when I enter a button) of my JDilog form. I have made an object from the SystemManagement class which is management (I have written also some part of t …
5
votes
6answers
136 views
C# File I/O Efficiency
Hi, I have done a homework assignment, here is the problem statement:
Your program should work as follows:
Ask the user to give you a file name. Get the file name and save it.
…
1
vote
4answers
65 views
Python Programming Help
#!/usr/bin/env python
import math
def primeTest(isPrime):
print(' {0}=testnum'.format(testnum))
if testnum%2 == 0 and testnum != 2: #if divisible by 2 and not 2
isPrime = Fa …
1
vote
1answer
56 views
Bounding ellipse
I have been given an assignement for a graphics module, one part of which is to calculate the minimum bounding ellipse of a set of arbitrary shapes. The ellipse doesn't have to be …
0
votes
2answers
117 views
Good Object Oriented Design When Deleting, C++
The code below deletes the symbol associated with the stock object just fine. Its just bad object oriented design.
The way that i am searching for each stock symbol is by using a …
1
vote
6answers
108 views
Why is the output this? (Java)
This is an instance method from a Rectangle class where we modify the x and y coordinates of the rectangle and its width and height
public void modify(int newX, int y, int width, …
0
votes
2answers
73 views
Initialize a structure with an array in a variable
How can we initialize a structure with an array (using its variable)?
This version works well:
MyStruct test = {"hello", 2009};
But this version is bugged:
char str[] = "hello …
