Coders Packet

Listing of packets of source code submitted by coders

DICE ROLL SIMULATOR USING PYTHON

A Dice roll simulator is a simple computer model that can roll dice for us. Dice roll simulated by using the random module in Python.

C++ code to check if a number is sum of two prime number

This is a C++ code to find whether a given positive number is a sum of any two prime numbers or not. If it is the sum of other prime numbers, then it shows all the combinations of the latter.

Student Management System in C++

This project is developed in the C++ language. Here teachers can add, update academic details of students, marks in various subjects, attendance, etc, and students view and check their details.

Currency Convertor using Java

Currency Conversion is the change of the real value of one currency into another country's currency.

Printing a Calendar of a given year using C++

In this article, we are going to learn how we can print a calendar for a given year using basic C++ language.

Weather Data Generator using C++ Programming Language

The objective of this project is to test the student’s knowledge in the aspect of basic programming and problem-solving for data analysis using C++ programming language.

Valid Sudoku Solver using C++ Programming Language

The objective of this project is to apply the basic aspect of programming knowledge(function, 2-D vector, array, recursion) and problem-solving using C++ programming language

Simple REST API client using Python

A simple REST API client made in python that can be used to make requests to REST APIs. All Five basic HTTP Methods are implemented in this script.

Kadane's Algorithm for circular Subarray in C++.

In this packet we are implementing a C++ Program for updating the use of Kadane's Algorithm for the Maximum Circular Subarray Problem.

Days in a particular month in C++

C++ program to find Days in a particular month. For example, if we give input as month number 5 and year 2003 and it means days in may, 2003 so it would print May, 2003 has 31 days.

Factorial of Large Number in C++

Factorial of 200 have 375 digits. It is not possible to store these values to data types(int , long long int) in C++.

Contact Book Management System using C++

This project is a console-based project without graphics. It allows users to save and easily search for a contact, like a person's name, email id, mobile number, address, and many other details.