首页 > 学院 > 开发设计 > 正文

.net 第二章上机练习1

2019-11-11 05:27:21
字体:
来源:转载
供稿:网友
using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace JiFen{    class PRogram    {        static void Main(string[] args)        {            int[] points = new int[5];               //历年积分数组            int[] newPoints = new int[5];            //新年积分数组            Console.WriteLine("请输入五位会员的积分:");            for (int i = 0; i < points.Length; i++)            {                Console.WriteLine("第" + (i + 1) + "位会员积分");                points[i] =Convert.ToInt32(Console.ReadLine());            }            //数组复制            for (int i = 0; i < points.Length; i++)            {                newPoints[i] = points[i];                newPoints[i] = newPoints[i] + 500;    //赠送500积分            }            Console.WriteLine("/n序号  历史积分  新年积分");            for (int i = 1; i < points.Length; i++)            {                Console.WriteLine("/n" + (i + 1) + "/t" + points[i] + "/t" + newPoints[i]);            }                Console.ReadLine();        }    }}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表