Tom Weaver
@ThomasWeaver
I am the next CEO of repl.it
I'm in the middle of my programming class, and I got an error message. I can't re-open any of my programs. What should I do guys? PLEASE HELP ASAP!!
masfrost It's been solved. It lasted about 30 minutes, sorry 5 in the morning and we couldn't respond immediately.4 years ago
kmcrae They are experiencing internal server errors. My students are trying to get on and it just keeps loading and then the classroom is not there and then we get a timeout error and just got an internal server error4 years ago
I made a game in java that generates a number and you have to guess the number that the computer generates. Once they get it right I'm supposed to ask
Geocube101 My first guess is a while loop.
import java.util.Scanner;
class Main
{
public static void main(String[] args)
{
while (true != false)
{
//Game Code
System.out.print("Play Again? ");
Scanner sc = new Scanner(System.in);
String again = sc.nextLine();
if (again.equals("yes") == false)
{
sc.close();
break;
}
}
}
}
My second guess is to use functions:
import java.util.Scanner;
class Main
{
public static void game()
{
4 years ago
I am working on a project with my classmate and we need to use the multiplayer thing, but I have to be on the program. Is there any way to fix this?
Vandesm14 The multiplayer link changes because the link is unusable after the host has left the session. After this, a new link is generated to keep others from using the old link.
You have to be on the program in order to keep multiplayer running at this current time. But maybe you can try a secondary account that stays up in the background using a pinned Chrome tab or something like that.
> Please upvote this post if it helped you in any way.4 years ago
OmniShift Ypu mean you want to use collaborative coding? Then you need to be an explorer. You can enable this is your settings under account - > roles4 years ago
Direction: : Write a program to determine if a year is a leap year. For this program, a leap year is any year evenly divisible by 4. You will need to
ash15khng Is this your homework? We can help you with your work, but we can't help you do your work.
If you've already started, please send us a repl.4 years ago
Instructions from your teacher:
Lab Description : Given a distance traveled (miles) and elapsed time (hours and minutes), calculate the speed in mile
teymour You just need to use the equation given.
Try this:
https://snakify.org/en/lessons/integerfloatnumbers/4 years ago