Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~994 People Reached
Favorite Forums
Favorite Tags
java x 14
c++ x 8
Member Avatar for blackbabydoll

I am having a problem sorting my numbers after my binary search. Can you tell me what is wrong with my code? [code] #include <iostream> #include <cstdlib> using namespace std; void pick_three(int p3arr[]); void pick_four(int p4arr[]); void lotto(int lottoarr[]); void selection_sort(int a[], int size); int lottobsearch(int a[], int size); int …

Member Avatar for AlephOne
0
150
Member Avatar for blackbabydoll

I am doing a project where I have the find the smallest value and the smallest object. In this project, you will write two methods. The first will take an array of int and will return the smallest value in the array. It will have a declaration as follows: int …

Member Avatar for server_crash
0
126
Member Avatar for blackbabydoll

[code] import java.io.*; import java.math.*; import java.util.*; public class GrowthofaFunction { public int calculateFunction(int x) { return 0; } /** * @param args */ public static void main(String[] args) { public void calculateFunction(); { final int x; final int y1; final int y2; final int y; Scanner stdin = new …

Member Avatar for server_crash
0
122
Member Avatar for blackbabydoll

I really need help. I did the code, but I know it is all wrong. I am not sure how to fix it. This program has boggled me for a week. I am watching the growth of the function. First I have to calculate a function after entering the value …

Member Avatar for blackbabydoll
0
239
Member Avatar for blackbabydoll

I just did the syntax for my program but the error I keep getting is that that java.io is not read. [CODE]import java.util.*; public class EnergyConverter { //main(): application entry point public static void main(String[] args) { //get option and numbers int Option = 0; double Amount = 0; double …

Member Avatar for blackbabydoll
0
96
Member Avatar for blackbabydoll

I receive to build areas when I want to start my debugging. But the errors do not show up when i just compile. They are: error LNK2001: unresolved external symbol "void __cdecl withdraw(char,double &,double &,class std::basic_ifstream<char,struct std::char_traits<char> > &,struct node * &)" (?withdraw@@$$FYAXDAAN0AAV?$basic_ifstream@DU?$char_traits@D@std@@@std@@AAPAUnode@@@Z) and fatal error LNK1120: 1 unresolved externals. …

Member Avatar for blackbabydoll
0
156
Member Avatar for blackbabydoll

This program is a word counter. But my logic is all messed up when it comes to the counting. I am not too sure on how about fixing it. The project compiles yet does not work properly. I still haven't figured yet how to count lines or characters properly. [code] …

Member Avatar for jwenting
0
105