Sofia Morales
@SofieMLPA
Hi! I'm a 7th grader at LifePoint Academy. I love coding and thinks it's cool. But I am new, so go easy on me.
Thanks to a few people here on Repl, I was able to get a good start on this game that I'm making.
I ran into a little trouble though. Does anyone know
CodeLongAndPros And then put lines 2-10 inside:
class MainClass {
public static void Main (string[] args) {
{Code goes here}
}
}
`3 years ago
How do you put a question with multiple outcomes on a program in C#?
CodeLongAndPros multiple outcomes on a program
string input = Console.ReadLine();
if (input == "hello") {
foo();
} else if (input == "spam") {
Console.WriteLine("I don\'t like spam!");
} else {
bar();
}
3 years ago
DynamicSquid display the question
display user input
if user input is something
then do something3 years ago
How do we share our codes with others outside of repl?
C#
Lord_Poseidon Just send this link to anyone!
https://WhisperedDesertedSign.sofiemlpa.repl.run3 years ago
Just made a weird calculator for beginners. The order that you put the numbers in does matter. Hope you enjoy. Feedback is more than accepted.
C#
I'm new to coding and this community looks great. I was trying to code a survey, and then it wouldn't run because it said that Console was an unexpect
C#
i am trying to make a survey, and it won't run. And what is main cs?
C#
theangryepicbanana You are missing a semicolon at the end of line 99:
Console.WriteLine("And your favorite celeberity is " + celeb)
`3 years ago