A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Write C# program to find sum of odd numbers between 1 to n
Q:

Write C# program to find sum of odd numbers between 1 to n

0

Write C# program to find sum of odd numbers between 1 to n

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

I have used Visual Studio 2012 for debugging purpose. But you can use any version of visul studio as per your availability..

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
public class csharpExercise
{
    static void Main(string[] args)
    {
 
        int i, num, sum = 0;
 
        // Reading number
        Console.Write("Enter any number: ");
        num = Convert.ToInt32(Console.ReadLine());
 
        for (i = 1; i <= num; i += 2)
        {
            //Adding current odd number to sum variable
            sum += i;
        }
        Console.WriteLine("Sum of all odd numbers between 1 to " + num + " = " + sum);
 
        Console.ReadLine();
    }
}

Result:

Enter any number: 15

Sum of all odd numbers between 1 to 15 = 64

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now