import java.util.Scanner;

public class StudentList{


public static void main(String [] args){
Scanner console=new Scanner(System.in);
String students[]=new String [10];
System.out.println("Enter names of students");
for(int i=0;i<students.length;i++)
students[i]=console.nextInt();
System.out.println("Students entered are");
for(int i=0;i<students.length;i++)
System.out.println(students[i]);
}
}
NormR1 commented: Don't start new threads every post +0

Recommended Answers

All 5 Replies

Don't start a new thread every time you post. Continue one the first one.

sorry im just new here i dont know the rules...ok can you help with that..

I see nothing wrong with this code, assuming the student's names are in integer format. What do you think, 78 111 114 109?

You need to post some questions with the code describing your problems.
You also should add comments to the code describing what the code is supposed to do.

sorry im just new here i dont know the rules

Then READ the rules. They're right next to the logout button, at least some of them. Two possibly aren't there:

  1. One open thread per topic.
  2. Don't PM people for help. Just post on the public forum.

Read this too. If you follow all the rules and act lik you're willing to put in effort, people will help.

http://catb.org/~esr/faqs/smart-questions.html

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.