Coding VS Programming

Coding and programming are two words in the field of computer science or software development often taken interchangeably. But coding and programming are two different things. Here let us look…

C Program to Find GCD

C Program to Find GCD: This post discusses how to write C program to find GCD. There are many approaches to find the greatest common divisor (GCD) of any two…

C Program to Print Fibonacci Numbers

Before looking into the program to print Fibonacci numbers, let us look into what really it is.  Fibonacci numbers are a sequence of numbers known as a Fibonacci sequence which is characterized by the fact…

Kattis Problem: Batter Up

Problem Link https://open.kattis.com/problems/batterup Sample Solution import java.util.Scanner; class BatterUp{ public static void main(String[] args) { Scanner in = new Scanner(System.in); int n = in.nextInt(); float sum = 0, avg=0; int[]…

Kattis Problem: Faktor

Problem Link: https://open.kattis.com/problems/faktor Sample Solution import java.util.Scanner; public class Faktor { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(), i = sc.nextInt(); int…