דבר ראשון:
ממש מפגר הקטע הזה של השפה, כמעט את כל הפרוייקטים, אפשר להכין בכל השפות (לא נתייחס כרגע לשפות בסביבת אינטרנט), תן את המשימה והראשון שעושה את זה בשפה שהוא יודע לוקח ת'נקודה.
בכל מקרה, אם תקבל או לא, הנה בC#:
קוד:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
classProgram
{
staticvoid Main(string[] args)
{
string user, email, pass;
Console.Write("Enter your username: ");
user = Console.ReadLine();
Console.Write("Enter your email adress: ");
email = Console.ReadLine();
Console.Write("Enter your password: ");
pass = Console.ReadLine();
Console.WriteLine("Username: {0}", user);
Console.WriteLine("Email adress: {0}", email);
Console.WriteLine("Password: {0}", pass);
}
}
}