Posts

Showing posts from July, 2020

C# program to print sum of square of even numbers

Image
                                               C# program to print   sum of square of even numbers Example:- Print sum of square of even numbers up to 5 Output :- 20 Explanation:-   2*2+4*4

C# Programs to find factorial (using recursion)

Image
                                              C# Programs to find factorial (using recursion) Example:-  Input :- 5 Output:- 120

C# print table using recursion

Image
                                                C# print table using recursion