#承德13级 Unity3D 游戏开发#指派了新任务. 观看极客学院视频
观看极客学院视频 1.uGUI系统 2.物理引擎 链接已发到群里,请观看学习
#承德13级 Unity3D 游戏开发#指派了新任务. 观看慕课网面向对象视频教程
观看慕课网面向对象视频教程,请在3月15日前完成,里边的学习进度将记入平时成绩 链接如下: http://www.imooc.com/learn/554
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//计算梯形的面积
namespace zuoye2
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("请输入梯形的上底:");
            int width = Convert.ToInt16(Console.ReadLine());
            Console.WriteLine("请输入梯形的下底:");
            int width1 = Convert.ToInt16(Console.ReadLine());
            Console.WriteLine("请输入梯形的高:");
            int width2 = Convert.ToInt16(Console.ReadLine());
            Console.WriteLine("梯形的面积为:{0}",(width+width1)*width2/2);
            Console.ReadKey();
           
        }
    }
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//判断分数是否合格
namespace zuoye4
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("请输入你的分数");
            int score = Convert.ToInt16(Console.ReadLine());
            string str = score>60?"合格":"不合格";
            Console.WriteLine("你的分数{0}",str);
            Console.ReadKey();
        }
    }
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//输入两位数,并交换
namespace zuoye
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("请输入整数a:");
            int a = Convert.ToInt16(Console.ReadLine());
            Console.WriteLine("请输入整数b:");
            int b = Convert.ToInt16(Console.ReadLine());
            int t;
            t = a;
            a = b;
            b = t;
            Console.WriteLine("a:{0} b:{1}", a, b);
            Console.ReadKey();
            
        }
    }
}
#承德13级 Unity3D 游戏开发#指派了新任务. 3月2日作业(请按时完成,记入平时成绩)
完成课上留的3个作业,提交代码 1.接收用户输入两个整数,存储到两个变量中,并交换他们的值 2.输入梯形的上底、下底和高,计算出来梯形的面积并显示出来 3.用三元运算符,在控制台输入一个分数,判断是否及格
可以了
#承德13级 Unity3D 游戏开发#指派了新任务. 第一个测试任务
每个人把自己的昵称改一下,改成自己的中文名

C#课程第一章作业:

    1、安装Visual Studio 2013 (见安装手册)

    2、编写Hello word程序,并运行。

    3、编写程序ReadTest,输入某些(自定义)信息并在控制台格式化输出

    4、熟练掌握常用快捷键

要求:保证提交代码能正确运行

    1、需提交Hello World代码

    2、提交ReadTest代码

C#课程第一章作业:

    1、安装Visual Studio 2013 (见安装手册)

    2、编写Hello word程序,并运行。

    3、编写程序ReadTest,输入某些(自定义)信息并在控制台格式化输出

    4、熟练掌握常用快捷键

要求:保证提交代码能正确运行

    1、需提交Hello World代码

    2、提交ReadTest代码

课程学员
赵晴
张会英
王晶
刘荣
张一驰
王素霞
王雪
郑秉全
王志磊