Here we will learn how to program using C++ in order to find the perfect number. A Perfect Number...
Category - General
Palindrome Program in Java using Reverse Method
Java program to check if a string is a palindrome or not, it’s a palindrome if it remains the...
How to format a string as a fixed length number in C#
C# Code: class Program { static void Main(string[] args) { //this line create an int variable. int...
floor() Method in Python with Examples
In this tutorial, we’ll learn how to use the floor() method in Python. floor() method in...
Python Conditions and If statements with Examples
Conditions are an essential concept in programming. For example, a variable is positive, another...
Java Math Class Methods With Examples
Java Math max() method with Examples The Java.lang.math.max() function is an inbuilt function in...
Pseudocode – Print Numbers Between 1 to 100 which are divisible by 3, 5 and by both
Write a pseudode to print numbers between 1 to 100 which are divisible by 3, 5 and by both. System...
Pseudocode to Claculate Area and Perimeter of Circle
In geometry, the area enclosed by a circle of radius r is πr2. Here the Greek letter π represents a...
Compare Two Strings in Java
In this post we will learn how to compare two strings in java. String is a sequence of characters...
Python Program to Reverse a Number
How to reverse digits of a given number using Python program, this post has solved program with...