Que-Write a program to take integer value from user output will be doubled???
Wednesday, 28 August 2013
Monday, 26 August 2013
Latest If and else condition in C#
Que:-Write a program of If ,if else and else condition????
Best site learning c# programming
Que:- The following example determines whether an input character is a lowercase letter, an uppercase letter, or a number. If all three conditions are false, the character isn’t an alphanumeric character. The example displays a message for each case???
Simple If -else condition program in C#
Q:- In the following example, you enter a character from the keyboard, and the program uses a nested if statement to determine whether the input character is an alphabetic character. If the input character is an alphabetic character, the program checks whether the input character is lowercase or uppercase. A message appears for each case?????
Sunday, 25 August 2013
best sorting program in C#
Que- Write an array in C Sharp of length 3, and sort it???
Ans:- using System;
using System.Collections.Generic;
using System.Text;
namespace codeforevenorodd
{
class Program
{
static void Main(string[] args)
{
int[] number=new int[]{3,6,1,30,2};
Array.Sort(number);
foreach(int i in number)
{
Console.WriteLine(i);
}
Console.ReadLine();
}
}
}
print vertically program
Q:- Write a program in C# that take string input and print the result vertically???
Thursday, 22 August 2013
Print star (*) horizontally with space in C#
Q:- Print * 10 times Horizontally with spaces between them using C# Console Application??
print star(*) horizonatally in C#
Q:- Print * 10 times Horizontally using C# Console Application???
print star(*) vertically in C#
Q:- . Print * 10 times vertically using C# Console Application?????'
Login programs in C#
Q:- Q. Write a program in C# that take name and password. If the name and password are correct, the program show "you are logged in", otherwise, "incorrect name or password????
Best and easy programs in C#
Q:- Write a program in C# that take a sentence as input, and show the number of "a" used in the sentence???
Finding string length in C#
Q:2 Write a program in C# that take string input, and print is number of characters???
Subscribe to:
Posts (Atom)