(其实学过但是有4年了,Python用的多)
所以这次按照无门槛搞,以后从事教育类的话用到
然后就是要把以前学的Python liunx sql 爬虫的东西搞一搞 还有http网页这一块要在学习一下。把go看完
所以每天要更新,要不停的去写文章把基础的过一遍,一年多没敲过代码了基本上水平很差了
using System;
#使用 system库
namespace RectangleApplication
#命名 矩形Rectangle 应用程序Application(申请;请求)
{
class Rectangle
#class (v. 把…归类) 创建名为矩形变量 这里是一个变量Rectangle
{
// 成员变量
double length;
#双 长 double二倍
double width;
#双宽
publicvoid Acceptdetails()
#publicvoid(公开) 在这边是指 显示变量 Acceptdetails(详细信息) 显示的长宽的详细信息
{
length = 4.5;
width = 3.5;
}
publicdouble GetArea()
#显示获取区域 area区域
{
return length * width;
#retrun 这里是图解的意思 图解显示长宽和
}
publicvoid Display()
#显示输出
{
Console.WriteLine(“Length: {0}”, length);
#控制线从0这个集到结束
Console.WriteLine(“Width: {0}”, width);
Console.WriteLine(“Area: {0}”, GetArea());
#从0.0无区域到最终区域
}
}
class ExecuteRectangle
#创建变量 Execute 实行Rectangle 实例化
{
staticvoid Main(string[] args)
# Main() 方法
{
Rectangle r = new Rectangle();#读取新的矩形
r.Acceptdetails(); #读取新的详细信息
r.Display();#读取新的显示
Console.ReadLine(); #读取控制线条???就是绘画面积意思
}
}
}