Programmers help
Advertise here
  • Basics
  • Cheatsheets
  • Code Snippets
  • Exercises
  • JavaScript
  • Programs
  • Tutorials
  • Programs
  • Videos
  • Programs

    How to Check if a Number is Odd or Even in JavaScript

    Even numbers are those numbers that are exactly divisible by 2. The remainder operator % will give the remainder when used with a number. Example 1 // program to check …

    Read more
    0 FacebookTwitterPinterestEmail
  • Programs

    How to Convert Celsius to Fahrenheit in JavaScript

    In this article we will convert from celsius to fahrenheit The formula is fahrenheit = (celsius * 1.8) + 32 Example 1 This will prompt a user for input The …

    Read more
    0 FacebookTwitterPinterestEmail
  • Programs

    How to Add Two Numbers in JavaScript

    In this example we show how to add 2 numbers in JavaScript We use the + operator to add two or more numbers. Example 1 const num1 = 6; const …

    Read more
    0 FacebookTwitterPinterestEmail
  • Programs

    How to find the largest of three numbers in C#

    In this example we show how to find the largest of three user inputted integers We will use an if – else statement Example   using System; namespace ConsoleApp1 { …

    Read more
    0 FacebookTwitterPinterestEmail
  • Programs

    How to find the Mean of a Set of Numbers in C#

    In this example we show you how to get the mean of given Set of Numbers. The mean is the average of the numbers. It is easy to calculate: add up all the numbers, then divide …

    Read more
    0 FacebookTwitterPinterestEmail
  • Programs

    How to check whether the number is an Armstrong number in C#

    An Armstrong number or a plus perfect number) in a given number base is a number that is the sum of its own digits each raised to the power of …

    Read more
    0 FacebookTwitterPinterestEmail
  • Programs

    How to check if a number is a Palindrome in C#

    In this article we will show you how show to determine if a number is a palindrome A palindromic number is a number (such as 121) that remains the same …

    Read more
    0 FacebookTwitterPinterestEmail
  • Programs

    How to display a Fibonacci Series in C#

    In this article we will show you how show a fibonacci series In mathematics, the Fibonacci numbers, commonly denoted Fn, form a sequence, the Fibonacci sequence, in which each number …

    Read more
    0 FacebookTwitterPinterestEmail
  • Programs

    How to get all factors of a given number in C#

    In this article we will show you how check the factors of an integer A factor is a number that divides the given number without any remainder. Example   using System; namespace ConsoleApp1 { class Program …

    Read more
    0 FacebookTwitterPinterestEmail
  • Programs

    How to convert between celsius and fahrenheit in C#

    In this article we will show you how to convert from Celsius to Fahrenheit and from Fahrenheit to Celsius We use the following formulas To convert from Celsius to Fahrenheit: …

    Read more
    0 FacebookTwitterPinterestEmail
  • Programs

    How to check whether a year is a leap year or not in C#

    In this example we will show to check if a year is a leap year in C# There is a basic formula for this To determine whether a year is …

    Read more
    0 FacebookTwitterPinterestEmail
  • Programs

    How to Display the Date in Various Formats in C#

    In this article we look at a program that will display the date and time in various formats The format parameter can contain either a single format specifier character  or a …

    Read more
    0 FacebookTwitterPinterestEmail
Newer Posts
Older Posts

Great Offers

Get 12 Generative AI and LLM eBooks worth £324.88 for £9.00

Get 15 Data science eBooks worth £426.85 for £14.15

Get 7 OOP eBooks worth £205.93 for £7.55

Get 9 quantum computing eBooks worth £261.91 for £8.49

Tutorials

  • C Tutorials
  • C# Tutorials
  • C++ tutorials
  • Go Tutorials

Recent Posts

  • How to Fix DivideByZeroException in C# – Beginner-Friendly Guide
  • How to Fix IndexOutOfRangeException in C# – Simple Guide for Beginners
  • Tutorial: Structs in Rust Programming Language
  • How to Fix NullReferenceException in C# – A Beginner-Friendly Guide
  • How to Fix FileNotFoundError: [Errno 2] No such file or directory in Python
  • How to Safely Handle File Reading and Writing Errors in Python
  • How to Fix IOError: [Errno 13] Permission Denied in Python (Beginner Guide)
  • How to Fix IndexError: list index out of range in Python (Beginner Guide)
Advertise here

Donation Options

What its all for

PayPal


Kofi



Librepay



Patreon

Become a Patron!

Buy me a coffee

Categories

  • Assembly
  • Basics
  • C
  • C#
  • C++
  • Cheatsheets
  • Code Snippets
  • Ebooks
  • Exercises
  • Game Development
  • Go
  • HTML
  • Java
  • JavaScript
  • Node.js
  • PHP
  • Programs
  • Python
  • Resources
  • Rust
  • Tips
  • Tutorials
  • Videos

Other sites

http://learnmicropython.com

http://learningjava.net

http://maxjavascript.com

http://maxpython.com


Back To Top
Programmers help
  • Basics
  • Cheatsheets
  • Code Snippets
  • Exercises
  • JavaScript
  • Programs
  • Tutorials
  • Programs
  • Videos