A repository that will guide in making your first contribution.

Overview

Java Programs

A Repository that will guide you in making your first contribution.

Open Source Love svg1 PRs Welcome first-timers-only contributions welcome

How to contribute

  1. Fork the project
  2. Make any changes in your forked repo
  3. On this repo, click Pull Requests and raise a Pull Request selecting your fork on the right drop down

STEPS TO CONTRIBUTE

  1. Fork this Repository
  2. Clone it locally (Use github Desktop to make things easier)
  3. or Do it locally using the commands below

How to clone repo and make changes locally

  click on the clone button (green in colour). This gives you a copy of the project. Its now yours to play around with
  • Using git on your local machine. Do this to download the forked copy of this repo to your computer
  git clone https://github.com/yourGithubUsername/javacodes
  • switch to the cloned folder. This can be done with Gitbash or the integrated terminal in the VSCode editor
  cd javacodes
  • Make a new branch. Your name would make a good branch because it's unique!
  git checkout -b <name of new branch>
  • Create a new folder and submit your java code

  • Stage your changes

  git add yourprogramname.java

or

  git add .
  • Commit the changes
  git commit -m "Add <your-Java_program >"
  • Check the status of your repository
  git status
  • Pushing your repository to github
  git push origin <name of your branch>

or

  git branch -M main
  git push -u origin main
  git push origin main --force
  • Navigate to your fork, on the top of the files section you'll notice a new section containing, a contribute button!

  • Click on the contribute button, it will open a drop down, click the pull request button on the drop down

    Note: A pull request allows your changes to be merged with the original project.

  • Wait for your changes to be merged

Hurray! You made your contribution!! Don't forget to star this repo if it was helpful to you!

alt text

Comments
  • Update BuzzNumber.java

    Update BuzzNumber.java

    Hello, This is my first commit... Im sorry if i did it wrong. I added functionality so that if number entered is negative it will prompt user to re-enter a positive number. Also added funtionality in a try catch block so that if user enters a non number it prompts user to enter a number before it would have errored out.

    opened by jrodriq3 2
  • Add Intro to Strings (#78)

    Add Intro to Strings (#78)

    I've summarized an introduction to Strings in Java as best I could, just started learning how to contribute to GitHub yesterday. As specified, I created a new Strings folder and added a README.md. Cheers!

    opened by garciajump 1
  • Royce, Pascal's Triangle and FibonacciSeries

    Royce, Pascal's Triangle and FibonacciSeries

    Hello, I solved Pascal's Triangle and Fibonacci Series issue. This is my first contribution. If I missed some rule's about contributing to "javacodes", please let me know that I can fix immediately. Thank you.

    opened by TaeyeonRoyce 1
  • Created factors_of_a_number

    Created factors_of_a_number

    Hi, this is my first pull request ever. I hope I'm doing it right 😂

    Created program #39 that print out all (positive and negative) factors of a given integer number.

    opened by KaWis17 1
  • Java Program to Check Buzz Number

    Java Program to Check Buzz Number

    Add Java Program to Check Buzz Number

    • A number is called a buzz number if it is divisible by 7 or it ends with 7. For example- 7, 17, 27, 37, 47 are buzz numbers because they end with 7.
    • Similarly, the numbers 7, 14, 21, 28, 35, 49 are also buzz numbers because they are divisible by the number 7.
    • The first few buzz numbers are:- 7 14 17 21 27 28 35 37 42 47 49 56 57 63 67 70 77 84 87 91 97 98 105 107 112 117 119 126 127 133 137 140 147 154 157 161 167 168 175 177 182 187 189 196 197
    good first issue Java 
    opened by sujana-kamasany 8
  • Java Program to Check Neon Number

    Java Program to Check Neon Number

    Add JAVA Program to Check if the given number is NEON NUMBER OR NOT

    If the sum of digits of the square of the number is equal to the same number then the number is called Neon number.

    Example:- 9 Square of 9 = 92= 81 Sum of the digits of the square = 8+1= 9 So, 9 is a Neon Number.

    Another Example:- 1 Square of 1= 12= 1 Sum of the digits of the square = 1 S0, 1 is a Neon Number

    Another Example:- 6 Square of 6 = 62 = 36 Sum of the digits of the square = 3+6 = 9 Here, 6 is not equal to 9. So, 6 is not a Neon number.

    good first issue Java 
    opened by sujana-kamasany 2
  • Pronic Number Program in Java

    Pronic Number Program in Java

    Java program to check whether the given number is the pronic number or not

    A pronic number is a number which is the product of two consecutive integers, that is, a number of the form n(n + 1).

    The pronic number is also called oblong numbers, heteromecic numbers, or rectangular numbers. The first few Pronic numbers are::- 0, 2, 6, 12, 20, 30, 42, 56, 72, 90, 110, 132, 156, 182, 210, 240, 272, 306, 342, 380, 420, 462 …

    image

    good first issue Java 
    opened by sujana-kamasany 2
  • JAVA Program to check if the given value is spy number or not

    JAVA Program to check if the given value is spy number or not

    Write a JAVA Program to find the given number is spy or not

    A number whose sum of the digits of is equal to the product of its digits is called Spy number.

    Example:- 132 The sum of digits = 1 + 3 + 2 = 6 The product of the digits = 1 * 3 * 2 = 6 Hence, 132 is a spy number.

    Similarly, 1124 is also a spy number. The sum of digits = 1 + 1 + 2 + 4 = 8 The product of the digits = 1 * 1 * 2 * 4 = 8

    good first issue Java 
    opened by sujana-kamasany 2
Owner
Sujana Kamasany
Sujana Kamasany
This repository should serve as a guide to everybody who wants to study software and hardware for embedded systems but doesn't know where to start.

Roadmap to Embedded Engineering This repository should serve as a guide to anyone who wants to study software and hardware for embedded systems but do

Mateus Antonio da Silva 108 Jan 4, 2023
Repository for FIRST Tech Challenge team 3916 Apex Robotics for the 2021-2022 game year (Freight Frenzy)

FTC Team 3916 - Apex Robotics This is our repo for the 2020-2021 game year - Ultimate Goal Installation Clone this repo. You can do this through the w

Aman Anas 6 Nov 4, 2021
This repository contains my first project of Suven Internship.

Consumer-Loan-Assistant PROBLEM STATEMENT (Ever wonder just) How much those credit card accounts are costing you? ABSTRACT This project will help you

Kartik Agrawal 2 Sep 16, 2022
Java framework for making REST clients

Pocolifo's REST Client Framework Java framework for making REST clients Here's how easy it is Here's an example for a GET request in the context of a

null 3 Jun 19, 2022
Silicon Copéllia is a software for making robots response affactively to other agents.

Silicon Copéllia is a software for making robots response affactively to other agents. This project aims to cope with the number produced by Copéllia during the affection/emotion processing process and make Copéllia talks by applying NLP.

null 1 May 26, 2022
Clean-architecture-guide - Guia sobre Clean Architecture criado a partir dos meus estudos sobre o tema.

Clean Architecture Guide Arquitetura são as práticas e fundamentos de como organizamos um sistema. Tem relação e como os componentes estão relacionado

Jean Jacques Nascimento Barros 3 Apr 23, 2022
The code examples of the "Effective Software Testing: A Developer's Guide" book

Effective software testing This repository contains the code examples of the Software Testing: A Developer's Guide book, by Maurício Aniche. Each fold

null 44 Dec 29, 2022
Minecraft configurable plugin , which sends messages the first time a player logs into the server or the next time they log in.

JoinMessages Minecraft configurable plugin , which sends messages the first time a player logs into the server or the next time they log in or leave.

ᴠᴀʟᴇɴᴛɪɴ ᴢʜᴇʟᴇᴠ 6 Aug 30, 2022
My first proper GitHub project, I guess. Basically an automated version of the "Battle Royale" short series on Geo Facts' YouTube channel.

State-Royale Made by Pixer415, with some help from ThatOneCalculator This project needs your contributions. New modes/new features/typo fixes/suggesti

null 2 Jun 27, 2022
The first Java Actor System supporting fibers from Project Loom

Fibry Fibry is an experimental Actor System built to be simple and flexible. Hopefully, it will also be fun to use. Fibry is the first Java Actor Syst

Luca Venturi 196 Dec 26, 2022
Robot Application for void, our 2022 Robot for FIRST Rapid React

void TODO insert cool void logo here Robot Application for void, our 2022 Robot for FIRST Rapid React Building To build the application locally, run .

FRC Team #862, Lightning Robotics 9 Apr 4, 2022
Robot code for First Robotics Challenge for 2022.

rapid-react-robot-code-2022 Robot code for First Robotics Challenge for 2022. The pictures folder is for the embedded photos. Don't delete it. Prerequ

null 4 Feb 22, 2022
first open-source brawl stars private server written in java!

Java-Brawl first open-source brawl stars private server written in java! (and first open-source v23 private server!) some stuff you should read thank

HaccerCat 11 Dec 27, 2022
First experiments to try to render the Doom WAD maps using only standard libraries. Test 004 - https://youtu.be/-6mePgg7gXE

JavaDoomWADMapRendererTests Test 001 (07/set/2022) - https://youtu.be/MpY0PICdcwM First experiments to try to render the Doom WAD maps using only stan

Leo 6 Oct 17, 2022
This repository is totally dedicated to Hacktoberfest 2021, feel free to add your project.

push-it-hacktoberfest This repository is totally dedicated to Hacktoberfest 2021, feel free to add your project. HacktoberFest21 Hello Hackers, Contri

Muhammad Bilal 3 Oct 31, 2021
Generate a dynamic PAC script that will route traffic to your Burp proxy only if it matches the scope defined in your Burp target.

Burp PAC Server This Burp Extension generates a dynamic Proxy Auto-Configuration (PAC) script that will route traffic to your Burp proxy only if it ma

null 30 Jun 13, 2022
A minecraft minigame where you have to defend your bed and destroy the others. Once your bed is destroyed, you cannot respawn.

As from November 1st 2021 BedWars1058 by Andrei Dascălu becomes open source under GNU GPL 3.0 license. If you are a developer I would really appreciat

Andrei Dascălu 182 Dec 26, 2022
Create your Java crypto trading bot in minutes. Our Spring boot starter takes care of exchange connections, accounts, orders, trades, and positions so you can focus on building your strategies.

Quick Start | Documentation | Discord | Twitter Create and run your java crypto trading bot in minutes Our Spring boot starter takes care of exchange

Cassandre 442 Jan 3, 2023
This app corrects your sitting posture and provides feedback in real time in conjunction with the app. A sensor of 31 cells detects your posture to get better life-wellness

Notichair 실시간 자세분석 및 교정 스마트체어 ?? 상명대학교 PRIME 경진대회 수상 ?? 요구사항 31-cell sensor (mdxs-16-5610) 목차 1. 소개 프로젝트 내용 소개 2. 개발 환경 사전 설정 및 환경 구축 3. 기능 Sensors Ap

Minuk_LEE 3 Jan 15, 2022