write a program to insert an element into an array
Answer Posted /
import java.util.*;
import java.io.*;
public class project
{
public static void main (String[]args) throws
IOException
{
BufferedReader dataIn = new BufferedReader
(new InputStreamReader(System.in));
System.out.println
("******************************");
System.out.println("
+++++++++++++++ ");
System.out.println(" [1]
Insert ");
System.out.println(" [2]
Delete ");
System.out.println(" [3]
Search ");
System.out.println(" [4]
Sort ");
System.out.println("
+++++++++++++++ ");
System.out.println
("******************************");
}
}
| Is This Answer Correct ? | 20 Yes | 81 No |
Post New Answer View All Answers
What are the rules for naming an identifier?
What is a constructor in c++ with example?
What is an iterator class in c++?
What is a rooted hierarchy?
Are there interfaces in c++?
Explain the difference between c++ and java.
What do you mean by translation unit in c++?
Tell me can a pure virtual function have an implementation?
Which programming language should I learn first?
What is c++ library?
Why do we use classes in c++?
What is iomanip c++?
What is type of 'this' pointer?
How is c++ different from java?
What is the C-style character string?