diff --git a/Neeraja_EvenOrOdd_q2.java b/Neeraja_EvenOrOdd_q2.java new file mode 100644 index 0000000..3959d53 --- /dev/null +++ b/Neeraja_EvenOrOdd_q2.java @@ -0,0 +1,13 @@ +import java.util.*; +public class Neeraja_EvenOrOdd_q2 { + public static void main (String[] args) { + Scanner sc = new Scanner(System.in); + System.out.println("Enter a number: "); + int num = sc.nextInt(); + if(num % 2 == 0) { + System.out.println(num + " is a Even number"); + } else { + System.out.println(num + " is a Odd number"); + } + } +} \ No newline at end of file diff --git a/Neeraja_PositiveNegative_q1.java b/Neeraja_PositiveNegative_q1.java new file mode 100644 index 0000000..0221bbf --- /dev/null +++ b/Neeraja_PositiveNegative_q1.java @@ -0,0 +1,15 @@ +import java.util.Scanner; +public class Neeraja_PositiveNegative_q1 { + public static void main (String[] args) { + Scanner sc = new Scanner (System.in); + System.out.println("Enter a number: "); + int num = sc.nextInt(); + if (num > 0) { + System.out.println(num + " is Positive"); + } else if (num < 0) { + System.out.println(num + " is Negative"); + } else { + System.out.println(num + " is Zero"); + } + } +} \ No newline at end of file diff --git a/README.md b/README.md deleted file mode 100644 index 6f93903..0000000 --- a/README.md +++ /dev/null @@ -1,131 +0,0 @@ -# 🚀 WTC Coding Practice Repository - -Welcome to the **WTC Coding Practice Repository**. -This repository is a collaborative workspace where the **WTC team** solves programming problems, strengthens problem-solving skills, and builds a **strong personal and team coding brand** through consistent GitHub contributions. - ---- - -## 🎯 Purpose of This Repository - -- Practice and master **Data Structures & Algorithms** -- Develop **logical thinking and coding discipline** -- Build a **professional GitHub profile** for each team member -- Maintain **clean code and standard conventions** -- Track individual and team progress transparently - ---- - -## 👥 Who Can Contribute? - -This repository is intended **only for WTC team members**. -Every contributor is expected to: -- Solve assigned programming questions -- Push solutions regularly -- Follow the repository standards strictly - ---- - -## 📁 File Naming Convention (Strictly Mandatory) - -Each solution file **must follow** the naming format below: - -``` -Name_Question_q.No.extension -``` - -### ✅ Correct Examples -``` -Divyansh_TwoSum_q1.py -Aarav_ReverseArray_q12.cpp -Sneha_BinarySearch_q7.java -``` - -### ❌ Incorrect Examples -``` -q1.py -solution.cpp -TwoSum.java -``` - -**Rules:** -- `Name` → Your name (use the same format every time) -- `Question` → Short and meaningful problem name -- `q.No.` → Question number as per the shared list - ---- - -## 🧠 Problem Source - -All problems will be taken from the **official question list shared with the WTC team** -(e.g., Top 100 DSA sheet, daily practice sheet, or curated problem sets). - -Make sure: -- You solve the correct question number -- Your solution matches the problem statement -- No copied or plagiarized code is pushed - ---- - -## 🛠️ Allowed Programming Languages - -You may use: -- **C / C++** -- **Java** -- **Python** -- **JavaScript** - -Choose your preferred language, but ensure: -- Readable code -- Proper formatting -- Meaningful variable names - ---- - -## 📌 Contribution Guidelines - -1. Clone or fork the repository (as instructed) -2. Add your solution file following the naming convention -3. Write clean and well-structured code -4. Push your changes to the repository -5. Update the **progress tracking sheet** after every submission - ---- - -## 📊 Progress Tracking - -Each contributor must update the shared tracking sheet with: -- Name -- Question number solved -- Programming language used -- Date of submission - -This helps maintain **accountability and transparency**. - ---- - -## 🏆 Building the WTC Brand - -This repository represents the **technical identity of WTC**. -Your contributions should reflect: -- Consistency -- Professionalism -- Strong coding fundamentals - -Code as if a **recruiter or senior engineer** is reviewing it. - ---- - -## 📬 Support - -For any doubts related to: -- Problem statements -- Contribution rules -- File naming conventions - -Please contact the **WTC core team**. - ---- - -### 🔥 Code Daily. Improve Constantly. Build Your Brand. - -Happy Coding! 🚀