Here is the first part of assignment 1.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Assignment1_1
{
/*This program will take in a user's
name and email and display it
last name, first name -- email
Steve Conger, 10/4/2016
*/
class Program
{
//starting point of the program
static void Main(string[] args)
{
string firstName;
string lastName;
string email;
Console.WriteLine("Enter your first name");
firstName = Console.ReadLine();
Console.WriteLine("Enter your last name");
lastName = Console.ReadLine();
Console.WriteLine("Enter your email");
email = Console.ReadLine();
Console.WriteLine("{0}, {1}--{2}", lastName, firstName, email);
Console.WriteLine(lastName + ", " + firstName + "--" + email);
Console.WriteLine("Press any key to exit");
Console.ReadKey();
}//end of Main
}//end of class program
}//end of namespace
Here is the second part of assignment one
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Assignment1_2
{
class Program
{
/*This program produces a
* mailing label
* steve conger 10/4/2016
* */
static void Main(string[] args)
{
Console.WriteLine("Enter your full name");
string fullName = Console.ReadLine();
Console.WriteLine("Enter your street address");
string address = Console.ReadLine();
Console.WriteLine("Enter your City");
string city = Console.ReadLine();
Console.WriteLine("Enter your State");
string state = Console.ReadLine();
Console.WriteLine("Enter your zip code");
string zipcode = Console.ReadLine();
Console.WriteLine();
Console.WriteLine(fullName);
Console.WriteLine(address);
Console.WriteLine("{0}, {1} {2}",city, state, zipcode);
Console.WriteLine();
//an alternate way with line break excape characters (\n)
Console.WriteLine(fullName+"\n" + address + "\n" + city + ", " + state + " " + zipcode);
Console.WriteLine();
Console.WriteLine("Press any key to exit");
Console.ReadKey();
}
}
}
No comments:
Post a Comment