Input:
enter the value:1234
output:
1
2
3
4
write a program to get above output.....
Answers were Sorted based on User's Feedback
Answer / mahesh.b.p.c
static void Main(string[] args)
{
string value= Console.ReadLine();
foreach(object num in value)
{
Console.WriteLine(num);
Console.WriteLine();
}
Console.Read();
}
| Is This Answer Correct ? | 11 Yes | 4 No |
Answer / arunbabu.k
static void Main(string[] args)
{
Console.WriteLine("Enter text/numbers");
string str1=Console.ReadLine();
char[] ch_str = new char[str1.Length];
ch_str = str1.ToCharArray();
for (int num = 0; num < str1.Length;num ++ )
{
Console.WriteLine(ch_str [num]);
}
Console.Read();
}
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / chandan
public static void Main()
{
string str = Console.ReadLine();
foreach (var obj in str)
{
Console.Write(obj.ToString());
Console.WriteLine();
}
Console.ReadLine();
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / bala
static void Main(string[] args)
{
string value = Console.ReadLine();
foreach (var num in value)
{
Console.Write(num + " ");
}
Console.Read();
}
| Is This Answer Correct ? | 0 Yes | 4 No |
What is the default size allocated for array in the statement if size not specified " int a[] "
How do you define a class in oop?
What is a class and object?
why c++ is a highlevel language
3 Answers Satyam, Tech Mahindra,
What is the different between Applet and Application?
What does and I oop mean?
What is polymorphism give a real life example?
What is a mixin class?
Write a program to find out the number of palindromes in a sentence.
What is the difference between static polymorphism and dynamic polymorphism?
what are the ways in which a constructors can be called?
What is the differances between a abstract calss and interface