Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

code example of sum of the first n odd numbers using for loop

def OddSummation(n):
    total = 0
    for i in range(1,n,2):
        total+=i
    return total
    
    
def main():
    number = int(input("Enter the number: "))
    print("The summation of all the odd numbers between 1 and ",number, " is ",         OddSummation(number))
    
main()
Comment

find sum of all odd numbers from 1 to n using for loop

/**
 * C program to print the sum of all odd numbers from 1 to n
 */

#include <stdio.h>

int main()
{
    int i, n, sum=0;

    /* Input range to find sum of odd numbers */
    printf("Enter upper limit: ");
    scanf("%d", &n);

    /* Find the sum of all odd number */
    for(i=1; i<=n; i+=2)
    {
        sum += i;
    }

    printf("Sum of odd numbers = %d", sum);

    return 0;
}
Comment

summing all Odd Numbers from 1 to N

# Python Program to Calculate Sum of Odd Numbers from 1 to N
 
maximum = int(input(" Please Enter the Maximum Value : "))
Oddtotal = 0

for number in range(1, maximum+1, 2):
    print("{0}".format(number))
    Oddtotal = Oddtotal + number

print("The Sum of Odd Numbers from 1 to {0} = {1}".format(number, Oddtotal))
Comment

PREVIOUS NEXT
Code Example
Python :: python how to switch between true and false 
Python :: comentar codigo en python 
Python :: numpy linspace function 
Python :: streamlit cheatsheet 
Python :: how to schedule python script in windows 
Python :: geodataframe get crs 
Python :: turn a query set into a list django 
Python :: how to store categorical variables in separate dataframe 
Python :: python calculator 
Python :: kwargs in python 
Python :: all function in python 
Python :: list add pythhon 
Python :: random forest algorithm 
Python :: How to solve not in base 10 in python when using decimals 
Python :: python webview 
Python :: create new spreadsheet 
Python :: Remove an element from a Python list Using pop() method 
Python :: drop columns 
Python :: python using set 
Python :: depth first search 
Python :: python convert time 
Python :: how to read an xml file 
Python :: sort a dataframe 
Python :: python while loop 
Python :: python variable type 
Python :: how to change datatype of column in pandas 
Python :: take union of two dataframes pandas 
Python :: get center position of countries geopandas 
Python :: python assertEqual tuple list 
Python :: TypeError: Object of type DictProxy is not JSON serializable 
ADD CONTENT
Topic
Content
Source link
Name
4+4 =