Skip to content
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

JAVA : Java Loops I #24

Open
Riddhi9570 opened this issue Sep 29, 2022 · 18 comments
Open

JAVA : Java Loops I #24

Riddhi9570 opened this issue Sep 29, 2022 · 18 comments
Assignees
Labels
easy good first issue Good for newcomers hacktoberfest This issue will be considered for hacktoberfest contribution

Comments

@Riddhi9570
Copy link
Owner

Write your solution to this JAVA problem of hackerrank:-
Problem link : Java Loops I

@Riddhi9570 Riddhi9570 added good first issue Good for newcomers easy labels Sep 29, 2022
@adityjoshi
Copy link
Contributor

hey can I contribute to this issue

@sanvisharma003
Copy link

Heyy.. I can contribute to this issue

@Riddhi9570
Copy link
Owner Author

Since I can assign only one issue to a contributor at a time, and have assigned an issue to @adityjoshi , I'm assigning this issue to @sanvisharma003.

@Riddhi9570
Copy link
Owner Author

@sanvisharma003 are you a hacktoberfest contributor?

@sanvisharma003
Copy link

yes.. i am.. actually its the first time i am taking part ..
thankyou for assigning..

@sanvisharma003
Copy link

is this issue for hacktoberfest?

@Riddhi9570 Riddhi9570 added the hacktoberfest This issue will be considered for hacktoberfest contribution label Oct 1, 2022
@Riddhi9570
Copy link
Owner Author

@sanvisharma003 Yes, you may please go ahead with your contribution.

@RishitaGangwal
Copy link

Hey, Can I contribute to this issue?

@Riddhi9570
Copy link
Owner Author

@RishitaGangwal This issue is assigned to @sanvisharma003 . You can raise a new issue for another problem. Thanks!

@Uday-kiran9147
Copy link

Can I contribute to your issues?

@Riddhi9570
Copy link
Owner Author

Hey @Uday-kiran9147 Thanks for asking. You may please raise a new issue or claim an issue which is not assigned to anyone.

@sanvisharma003
Copy link

https://github.com/sanvisharma003/HackerrankPracticeProblems/blob/main/hackerrank%20JAVA%20loop%201

i created the code and tried to make a PR but i think due to some issue you haven't recieved it.. please do check once.

@RishitaGangwal
Copy link

RishitaGangwal commented Oct 3, 2022 via email

@Uday-kiran9147
Copy link

Uday-kiran9147 commented Oct 4, 2022

Hey! @Riddhi9570 Assign me this issue, with #Hactoberfest
https://www.hackerrank.com/challenges/java-substring/problem?isFullScree

@Riddhi9570
Copy link
Owner Author

Hey, @Uday-kiran9147 this hackerrank problem is already present in the repo.

@sp-gits
Copy link

sp-gits commented Oct 18, 2022

can you assign this issue to me ?

@20a31a05g6
Copy link

class FactorialExample2{
static int factorial(int n){
if (n == 0)
return 1;
else
return(n * factorial(n-1));
}
public static void main(String args[]){
int i,fact=1;
int number=6;//It is the number to calculate factorial
fact = factorial(number);
System.out.println("Factorial of "+number+" is: "+fact);
}
}

Explain this step by step please

SukhmanAulakh18 added a commit to SukhmanAulakh18/HackerrankPracticeProblems that referenced this issue Jan 6, 2024
…loop to iterate over ten numbers, multiplying each by the user-entered value. Utilized BufferedReader for input, as specified in the original question.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
easy good first issue Good for newcomers hacktoberfest This issue will be considered for hacktoberfest contribution
Projects
None yet
Development

No branches or pull requests

8 participants