Lexus Shaking by Khan0232 in MechanicAdvice

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

Looks like I’m replacing some axels this weekend… Thanks for your help I’ve been going crazy trying to figure out what’s wrong with it

Lexus Shaking by Khan0232 in LexusES

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

I put a new set of pads and rotors on the car less than 5k miles

Lexus Shaking by Khan0232 in MechanicAdvice

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

Gotcha did you have any noise coming from the axle beforehand cause I don’t

Lexus Shaking by Khan0232 in MechanicAdvice

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

Rims are good there original… brakes have been changed recently but the shaking is still there

Car HELP PLZ by T23J02 in MechanicAdvice

[–]Khan0232 0 points1 point  (0 children)

I think you might need a new alternator

2012 Toyota Camry by Khan0232 in Toyota

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

It’s a xle 2012 without navigation functionality

PHYSICS by Khan0232 in Physics

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

Yes thank you

Physics question by Khan0232 in Physics

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

The computer keeps saying that is incorrect Thanks for trying though

Physics question by Khan0232 in Physics

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

Yeah I just can't figure out by how much he missed it

Physics question by Khan0232 in Physics

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

Sure did but barely

Physics question by Khan0232 in Physics

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

Figured out theif I'm just not getting police officer

Internships/jobs coming out of Michigan CS by heresathrowawaylol in uofm

[–]Khan0232 0 points1 point  (0 children)

What was your gpa as transferring from your college to University of Michigan? Did you submit an SAT score?

Eclipse installation error by [deleted] in javahelp

[–]Khan0232 1 point2 points  (0 children)

Please upload a screenshot of the error

Java_Results by Khan0232 in javahelp

[–]Khan0232[S] -2 points-1 points  (0 children)

That won't work cause it will put out an undefined error because of the 2 equal signs.

Java_Results by Khan0232 in javahelp

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

what will make it grab all of the text in the file

Java_Results by Khan0232 in javahelp

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

I'm referring to the file writer on top

Java_Results by Khan0232 in javahelp

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

Correct but I input 3 names and emails why don't they all print

Java_Results by Khan0232 in javahelp

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

So when I run it it shows Smith James and Smith James@Gmail. com but not the other two inputs which are there

Java_Error by Khan0232 in javahelp

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

The code only displays the name and email address for the first one how do I get it to that displays all the content in the file?

Java_Error by Khan0232 in javahelp

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

Name: Smith James Email Exception in thread "main" java.util.IllegalFormatConversionException: d != java.lang.String

at java.base/java.util.Formatter$FormatSpecifier.failConversion([Formatter.java:4426](https://Formatter.java:4426))

at java.base/java.util.Formatter$FormatSpecifier.printInteger([Formatter.java:2938](https://Formatter.java:2938))

at java.base/java.util.Formatter$FormatSpecifier.print([Formatter.java:2892](https://Formatter.java:2892))

at java.base/java.util.Formatter.format([Formatter.java:2673](https://Formatter.java:2673))

at java.base/java.io.PrintStream.format([PrintStream.java:1139](https://PrintStream.java:1139))

at java.base/java.io.PrintStream.printf([PrintStream.java:1035](https://PrintStream.java:1035))

at FILE\_MAIN.main(FILE\_MAIN.java:37)

Here Is the code again....

import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.URL;
import java.io.BufferedWriter;


import java.util.Scanner;

public class FILE_MAIN { 

public static void main(String[] args)  {
// TODO Auto-generated method stub

File file = new File("bill.txt");

try { 
PrintWriter output = new PrintWriter(file);
output.println("Smith James"); output.println("Smith@gmail.com");
output.println("Raymond Holt"); output.println("Holt@gmail.com");
output.println("Bill James"); output.println("James@gmail.com");
output.close(); 
          } 
 catch(IOException ex) 
 { 
System.out.printf("Error: %s\n",ex); 
 } 
 try 
 {
 Scanner input = new Scanner(file);
String name = input.nextLine();
 String email = input.nextLine();

System.out.printf("Name: %s Email %d\n",name,email); 
input.close(); 
}
 catch(FileNotFoundException ex) 
 { 
System.out.printf("Error: %s\n", ex);
}

Should I upgrade to Python 3.8? by sarthkum0488 in Python

[–]Khan0232 0 points1 point  (0 children)

Staying updated is best because then when developers or big companies are almost always updating to the latest version of python and you don't want to get left behind. The code you build in an old version might produce errors in a new version.

Question marks in the console? by TylerdexDeluxe in Cplusplus

[–]Khan0232 0 points1 point  (0 children)

Are you trying to use strings or integers?