作业3

作者: 羊羊羊SHADOW | 来源:发表于2018-10-24 20:04 被阅读0次

    #作业要求

    有个叫卡卡西的人在旅店登记的时候前台让他填一张表,这张表里的内容要存到电脑上,有姓名、年龄、邮箱、家庭住址、工资,之后把这些信息显示出来。

    #代码

    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();

    #效果

    相关文章

      网友评论

          本文标题:作业3

          本文链接:https://www.haomeiwen.com/subject/nlaxtqtx.html