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



Input: enter the value:1234 output: 1 2 3 4 write a program to get above output.......

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

Input: enter the value:1234 output: 1 2 3 4 write a program to get above output.......

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

Input: enter the value:1234 output: 1 2 3 4 write a program to get above output.......

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

Input: enter the value:1234 output: 1 2 3 4 write a program to get above output.......

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

Post New Answer

More OOPS Interview Questions

Pls...could any one tell me that whether we can access the public data memeber of a class from another class with in the same program. Awaiting for your response Thanku

4 Answers  


What are objects in oop?

0 Answers  


How to create a comment page in C #??

2 Answers  


What are the types of abstraction?

0 Answers  


What is abstraction oop?

0 Answers  






What does the keyword "static" mean?

4 Answers   TCS,


What is class in oop with example?

0 Answers  


What is multilevel inheritance in oop?

0 Answers  


#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; wow *b; a.x = 22; b = &a; a.x = 23; cout << b->x; return 0; }

1 Answers  


In which Scenario you will go for Interface or Abstract Class?

1 Answers   InfoAxon Technologies,


What does the code "cout<<(0==0);" print? 1) 0 2) 1 3) Compiler error: Lvalue required

15 Answers   ISTS, Wipro,


What is Difeerence between List obj=new ArrayList(); and ArrayList obj=new ArrayList()?

0 Answers   NIIT, SRA,


Categories