votes
votes
votes
i want to add two numbers in c# console application how i get two input.
int a; int b; int ans; i need a two input a and b;? ans= a+b; console.writeline(ans);
votes
HCF PROBLEM
Write an algorithm to find the Highest common factor (HCF) of three numbers.In addition,write a program to implement this algorithm. how to create in c-sharp program.
votes
sir
write an algorithm to accept two string and check wheter the second string exists withing the first string.For example.if the first string is "concatenation" and second string is "cat",the algorithm should display " ...
votes
sir
Write an algorithm to multiply two 3*3 matrics.In addition,write a program to implement this algorithm. how to create this program in c-sharp
votes
sir
Write an algorithm to find the Highest common factor (HCF) of three numbers.In addition,write a program to implement this algorithm. how to create in c-sharp program.
votes
sir
Write n algorithm to accept a number between 1 and 9 and display a pyramid . for example,if the number entered is 5,the following pyramid will be displayed; 1 1 2 1 1 2 3 2 1 2 3 4 3 ...
votes
can't fingure this simple loop out in c#
string[] origArray = new string[] { "b", "c", "d" , "e"}; for(int i = 0; i< origArray.Length; i++) { lblOrig.Text = origArray[i] ; rt ...
