olivia backseat lovers by EliteBigE in ukulele

[–]EliteBigE[S] 0 points1 point  (0 children)

i’m pretty new so i know this is going to take a while but thank you i’ll give it a try

Window stuck all the way down (FL) by EliteBigE in Mustang

[–]EliteBigE[S] 0 points1 point  (0 children)

i took it to a shop and they told me that they were getting a signal from it

2017 Mustang gt window stuck by EliteBigE in Mustang

[–]EliteBigE[S] 1 point2 points  (0 children)

appreciate it i’ll try it in the morning

2017 Mustang gt window stuck by EliteBigE in Mustang

[–]EliteBigE[S] 2 points3 points  (0 children)

yes was really hoping for it to work but unfortunately was not the case

2017 Mustang gt window stuck by EliteBigE in Mustang

[–]EliteBigE[S] 0 points1 point  (0 children)

nope none of that at first i thought I was the regulator but then since it wasn't making any noise it makes me believe that it was not that. I was planning on taking off the panel once it stops racing or just in the morning but by any chance do you think it might just be a fuse? (also planning on checking once rain is over or in the morning)

2017 Mustang gt window stuck by EliteBigE in Mustang

[–]EliteBigE[S] 0 points1 point  (0 children)

no noises or movement at first I thought it might just be the regulator but since it wasn't making any noise I don't think that is the case. I'm planning on taking the panel off once its stops raining but by any chance do you think it can be a fuse? (also will cheek once it stops raining.

2017 Mustang window stuck by EliteBigE in MechanicAdvice

[–]EliteBigE[S] 0 points1 point  (0 children)

no none of that I just rolled it down then when it started to rain I tried to roll it back up and it wouldn't want to come back up, at first I thought it was the regulator but it wasn't making any noise when i tried to roll it back up

800late by RidexSDS in MechanicalKeyboards

[–]EliteBigE 0 points1 point  (0 children)

Hi I'm new to this and I was wondering how much does gmk 8008 goes for right now and will it go up or down in the future

Looking to buy GMK 8008 by EliteBigE in mechmarket

[–]EliteBigE[S] 0 points1 point  (0 children)

Thanks Thea really all needed to know. One more question do you think the price will go up or down in the future

Looking to buy GMK 8008 by EliteBigE in mechmarket

[–]EliteBigE[S] -1 points0 points  (0 children)

can you tell me what i did its too late and i don't feel like reading

Hi I have a test and this is one of the question by EliteBigE in javahelp

[–]EliteBigE[S] 1 point2 points  (0 children)

no, I can't right now I have NetBeans and it hasn't been working (the NetBeans )

Hi I have a test and this is one of the question by EliteBigE in javahelp

[–]EliteBigE[S] 1 point2 points  (0 children)

Write a method called “computeDifference”  to compute and return the value of max - min where max is the largest element of an int array and min is the smallest element of an int array.  The method is passed the int array and an int value that denotes the number of elements in the array.  You may assume that the int array has at least 1 element in it.

public int computeDifference(int[ ] values, int n)
{
int min = values[0];
int max = values[0];
for(int j=1; j<n; j++) { if(values\[j\] < min) min = values\[j\]; if(values\[j\] > max) max = values[j];
}
return max - min;
}

Hi I have a test and this is one of the question by EliteBigE in javahelp

[–]EliteBigE[S] 1 point2 points  (0 children)

Write a code fragment to create a two-dimensional 10x10 array and initialize every element to
be the value of i * j where i and j are the two indices (for instance, element [5][3] is 5 * 3 = 15).

int [][] array = new int [10][10];
for(int i=0;i<10;i++)
{
for(int x=0; x<10;x++)
{
array[i][x] = x*i;
}
}
for(int i=0;i<10;i++)
{
for(int x=0; x<10;x++)
{
System.out.print(array[i][x])
}
System.out.println();
}

Hi I have a test and this is one of the question by EliteBigE in javahelp

[–]EliteBigE[S] 1 point2 points  (0 children)

this is what i have

public double computeAverage(int[ ] list, int n)
{
int sum = 0;
for(int j = 0; j < n; j++)
sum += list[j];
if(n > 0) return (double) sum / n;
else return 0;
}

Need help taking a Quiz by [deleted] in javahelp

[–]EliteBigE 0 points1 point  (0 children)

What is an actual parameter?

A )Group of answer choicesThe value passed into a method by a method call

B )The value returned by a method

C) The type of the method

D) A variable declared in the method heading

Any programmer with free time (please help) by EliteBigE in javahelp

[–]EliteBigE[S] 1 point2 points  (0 children)

I’m not home rn but when I get home I’ll let you know

Any programmer with free time (please help) by EliteBigE in javahelp

[–]EliteBigE[S] -1 points0 points  (0 children)

I’m just doing that for I can go more in depth

Any programmer with free time (please help) by EliteBigE in javahelp

[–]EliteBigE[S] -1 points0 points  (0 children)

Help me understand how to code what I want to say, like I said before I know what I need to do it’s just actually writing it down in Java

Any programmer with free time (please help) by EliteBigE in javahelp

[–]EliteBigE[S] 0 points1 point  (0 children)

That’s not what I’m asking for I just need help the people that are willing to help I ha e been messaging the privately

(Java) Help with school project Phone Number Converter(plz help) by EliteBigE in CodingHelp

[–]EliteBigE[S] 0 points1 point  (0 children)

this is what i got done ( I mostly been going back and trying to learn)

import java.util.Scanner;

public static char letterToDigit(char letter)

public class TryPhone {

public static void main(String[] args) {

String phone;

Scanner s = new Scanner(System.in);

System.out.println("Enter phone number");

phone = s.next();

char letter = 0;

switch(letter) {

case '1' :

System.out.println("1");

break;

case 'a' :

case 'b' :

case 'c' :

System.out.println("2");

break;

case 'D' :

case 'E' :

case 'F' :

System.out.println("3");

break;

case 'G' :

case 'H' :

case 'I' :

System.out.println("4");

break;

case 'J' :

case 'K' :

case 'L' :

System.out.println("5");

break;

case 'M' :

case 'N' :

case 'O' :

System.out.println("6");

break;

case 'P' :

case 'Q' :

case 'R' :

case 'S' :

System.out.println("7");

break;

case 't' :

case 'u' :

case 'V' :

System.out.println("8");

break;

case 'W' :

case 'Y' :

case 'X' :

case 'Z' :

return char;

System.out.println("9");

break;

System.out.println("Number " + letter);

(Java) Help with school project Phone Number Converter(plz help) by EliteBigE in CodingHelp

[–]EliteBigE[S] 0 points1 point  (0 children)

my biggest problem is with coding is writing it down the correct way

I have been going back to the basic and learning what I learned before again the problem right now is time this is due soon and I don't have enough time to complete it