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
Can we change the basic meaning of an operator in c++?
Write bites in Turbo c++ Header ("Include") Files.
What is class invariant in c++?
What do you mean by volatile and mutable keywords used in c++?
int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}
Can comments be nested?
What is a c++ object?
What is #include iostream in c++?
How the endl and setw manipulator works?
Array base access faster or pointer base access is faster?
What are the four main data types?
If dog is a friend of boy and boy is a friend of house, is dog a friend of house?
How one would use switch in a program?
Is it possible to write a c++ template to check for a function's existence?
What is the limitation of cin while taking input for character array?