Skip to content

Enhancement #183

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
/target/
/build/
.classpath
.settings
#ignore log files
#.log

#ignore node_modules directory
node_modules/

#ignore enviornment files
#.env
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# <a href="https://youtu.be/mLFPodZO8Iw" target="_blank"> OnlineBookStore </a>
# Project Name

## Description
Briefly describe the project, its purpose, and key features.

## Installation
Provide step-by-step instructions to set up the project. Example:
```bash
git clone https://github.com/username/repository.git
cd repository
npm install# <a href="https://youtu.be/mLFPodZO8Iw" target="_blank"> OnlineBookStore </a>
- A Java Web Developement Project
- **Youtube VIDEO** for step by step Local Setup Guide : https://youtu.be/mLFPodZO8Iw
- **Youtube VIDEO** for local setup of tender management project: https://www.youtube.com/watch?v=7CE3aY4e644
Expand Down
47 changes: 47 additions & 0 deletions factorial without recurssion.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# a= int(input("Enter the number: "))
# if(a == 0):
# fact = 1
# fact = 1
# for i in range(1,a+1):
# fact = fact*i
# print("Factorial of", a, "is", fact)


# n1=int(input("ENTER REQUIRED LIMIT OF SERIES"))
# def rec (n):
# a=0
# b=1
# N2=b
# C=1
# if n==1:
# print(a)
# elif n==2:
# print(a,b)
# else :
# print(a, end=" ")
# while C<=n-1:
# print(N2, end=" ")
# N2=a+b
# a,b=b,N2
# C+=1
# print()

# rec(n1)

# n=str(int(input("enter an integer:")))
# a=0
# for i in n:
# a =a+int(i)**len(n)
# if int(n)==a:
# print(n,"is an amstrong number")
# else:
# print(n,"is not an armstrong number")









Loading