modulofunction
modulofunction
About
- Username
- modulofunction
- Joined
- Visits
- 0
- Last Active
- Roles
- Member
Comments
-
Your parabola is fully defined. I think that what the question is asking for is two other points that also help define a parabola. They are the x intercepts. Just set y=0 and get the two values of x.
-
Your parabola is fully defined. I think that what the question is asking for is two other points that also help define a parabola. They are the x intercepts. Just set y=0 and get the two values of x.
-
Ohhh, I see what you're trying to do. Here it is: public static void main(String[] args) { int[] numbers = {5, 8, 9, 6, 10}; boolean quit = false; Arrays.sort(numbers); int num = numbers[0]; whi…
-
Wouldn't it have been easier and faster to look at the reference? http://docs.oracle.com/javase/6/docs/api/java/lang... Returns: the index of the first occurrence of the character in the character sequence represented by this object, or -…
-
Wouldn't it have been easier and faster to look at the reference? http://docs.oracle.com/javase/6/docs/api/java/lang... Returns: the index of the first occurrence of the character in the character sequence represented by this object, or -…
-
You just need a single temp variable to store any one of the values, then shift as required, and fill that last with the temp value: temp = m; // last m = k; k = j; j = i; i = temp; Yes, it's just that easy! +add cja is correct, in or…
-
I need a program to simulate the operation of a flux capacitor.
-
I need a program to simulate the operation of a flux capacitor.
-
I need a program to simulate the operation of a flux capacitor.
-
You just need a single temp variable to store any one of the values, then shift as required, and fill that last with the temp value: temp = m; // last m = k; k = j; j = i; i = temp; Yes, it's just that easy! +add cja is correct, in or…
-
Wouldn't it have been easier and faster to look at the reference? http://docs.oracle.com/javase/6/docs/api/java/lang... Returns: the index of the first occurrence of the character in the character sequence represented by this object, or -…
-
Ohhh, I see what you're trying to do. Here it is: public static void main(String[] args) { int[] numbers = {5, 8, 9, 6, 10}; boolean quit = false; Arrays.sort(numbers); int num = numbers[0]; whi…
-
Your parabola is fully defined. I think that what the question is asking for is two other points that also help define a parabola. They are the x intercepts. Just set y=0 and get the two values of x.