作业3
2018-10-24 本文已影响0人
羊羊羊SHADOW
#作业要求
有个叫卡卡西的人在旅店登记的时候前台让他填一张表,这张表里的内容要存到电脑上,有姓名、年龄、邮箱、家庭住址、工资,之后把这些信息显示出来。
#代码
using System;
using System.
ollections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace 作业3{
class Program {
static void Main(string[] args) {
string name = "kakaxi";
int age = 30;
string email = "kakaxi@qq.com";
string addr = "文教路1号";
decimal salar = 2000m;
Console.WriteLine("我叫" + name );
Console.WriteLine("我住在"+addr);
Console.WriteLine("我今年"+age);
Console.WriteLine("我的邮箱是:"+email);
Console.WriteLine("我的工资是"+salar);
Console.ReadKey();