Forum: Java Dec 21st, 2005 |
| Replies: 6 Views: 2,843 No it isn't the names are in quotations. |
Forum: Java Dec 20th, 2005 |
| Replies: 6 Views: 2,843 Exception in thread "main" java.lang.Error: Unresolved compilation problem:
The operator < is undefined for the argument type(s) Student, Student
at Student.main(Student.java:63)
That is... |
Forum: Java Dec 20th, 2005 |
| Replies: 6 Views: 2,843 Well I hope someone will help me........ |
Forum: Java Dec 20th, 2005 |
| Replies: 6 Views: 2,843 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... |
Forum: Java Dec 1st, 2005 |
| Replies: 3 Views: 2,469 import java.util.Scanner;
public class GrowthofaFunction
{
//Method to calculate function
public static int calculateFunction(int x)
{
int result = 0; |
Forum: Java Dec 1st, 2005 |
| Replies: 3 Views: 2,469 |
Forum: Java Dec 1st, 2005 |
| Replies: 3 Views: 2,469 import java.io.*;
import java.math.*;
import java.util.*;
public class GrowthofaFunction
{
public int calculateFunction(int x) {
return 0; |
Forum: Java Nov 28th, 2005 |
| Replies: 6 Views: 1,895 See apparently I am suppose to take the answer of the function and then print the stars.........say for instance the answer is 62 then divide it by 10 and i will get 6 stars because you know it is... |
Forum: Java Nov 28th, 2005 |
| Replies: 6 Views: 1,895 import java.io.*;
import java.math.*;
import java.util.*;
public class GrowthofaFunction
{
/**
* @param args |
Forum: Java Nov 28th, 2005 |
| Replies: 6 Views: 1,895 Yeah that would be a solution. I knew something important was missing like that. :o
I will post the new code and hope that someone else could tell me what i did wrong. I don't think I did like... |
Forum: Java Nov 28th, 2005 |
| Replies: 6 Views: 1,895 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... |
Forum: Java Oct 19th, 2005 |
| Replies: 4 Views: 1,343 Right when I read that, I just saw the problem...thanks again :o |
Forum: Java Oct 19th, 2005 |
| Replies: 4 Views: 1,343 Ok I see my error there. Thanks. But it still doesn't help me with this problem or compile error. :(
It is stuck in a loop and it won't stop running. |
Forum: Java Oct 19th, 2005 |
| Replies: 4 Views: 1,343 I just did the syntax for my program but the error I keep getting is that that java.io is not read.
import java.util.*;
public class EnergyConverter
{
//main(): application entry point |
Forum: C++ Dec 16th, 2004 |
| Replies: 2 Views: 2,052 Another question? When the command prompt comes up, it is suppose to load the file but it is just blank, what exactly did i code incorrectly? I still trying to figure it out. |
Forum: C++ Dec 16th, 2004 |
| Replies: 2 Views: 2,052 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... |
Forum: C++ Dec 15th, 2004 |
| Replies: 11 Views: 4,070 thanks! that helped me very much with my sort. I really appreciate it. |
Forum: C++ Dec 15th, 2004 |
| Replies: 11 Views: 4,070 I never received a negative number, they might be my logic. What is the new value? I am trying to see what you are saying, but I don't see it at all. |
Forum: C++ Dec 15th, 2004 |
| Replies: 11 Views: 4,070 They are already suppose to be sorted then i got in for the binary search but when my output comes up they are not sorted. |
Forum: C++ Dec 15th, 2004 |
| Replies: 11 Views: 4,070 |
Forum: C++ Dec 15th, 2004 |
| Replies: 11 Views: 4,070 I am having a problem sorting my numbers after my binary search. Can you tell me what is wrong with my code?
#include <iostream>
#include <cstdlib>
using namespace std;
void pick_three(int... |
Forum: C++ Dec 3rd, 2004 |
| Replies: 1 Views: 2,544 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... |