【C#】1.C#基础
2021-06-11 21:06
标签:VS2017 学习 ++ linq 防止 tox 1.3 后缀 app1
1. C#入门
1.1. 空白项目
??C#的编程有点像java哈!C#的代码文件后缀是 .cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
}
}
}
1.2. 输出(Hello World!)
??学习任何语言都要从 Hello World 开始!C#的输出语句为 Console.WriteLine
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello! World!");
Console.ReadKey();//防止console一闪而过
}
}
}
1.3. 输入
??任何语言都少不了输入函数,C#的输入函数是 Console.Readline() ,这个函数从控制台读取一行输入,它是 String 类型的,所以要适当地进行类型转换。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
int a;
string b;
b = "是我刚刚输入的值!";
a = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("a={0},{1}",a,b);
Console.ReadKey();
}
}
}
1.4. 格式转换
??C#的格式转换函数的一般形式为 Convert.ToXXX ,如果使用的是VS2017的话,IDE会自动提示。
1.5. 条件判断(if)
??if 是所有语言都有的语法!
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
int a;
a = Convert.ToInt32(Console.ReadLine());
if(a>5)
{
Console.WriteLine("{0}>5!\n", a);
}
else
{
Console.WriteLine("{0}
1.6. 循环语句(for 和 while)
??循环是编程语言的命脉!
for 循环
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
int i;
for(i=0;i
while 循环
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
int i=0;
while(i
1.7. 数组
??在C#中,有三种常用数组结构,他们各有特点:
- 数组:长度是静态的,需要预先确定,只能存储一种类型的元素
- List:长度是动态的,只要内存够可以无限,只能存储一种类型的元素
- ArrayList :长度是动态的,但是其中每一个元素的类型可以是任意的
数组
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
int[] a = new int[5] {2,3,4,5,6};
int i;
for(i=0;i
List
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
List l = new List();
int i,a = 5;
while(a>=0)
{
l.Add(a);//添加数据
a = a - 1;
}
for(i=0;i
ArrayList
??记得在最前面添加 using System.Collections;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
ArrayList ArL = new ArrayList();
int i;
//添加数据
ArL.Add(1);
ArL.Add(2);
ArL.Add(3);
ArL.Add("a");
ArL.Add("b");
ArL.Add("c");
for (i=0;i
2. 函数式编程
2.1. 方法(函数)的一般写法
??使用函数,降低代码耦合度!
输入半径,计算面积,pi=3.1415926
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections;
namespace ConsoleApp1
{
class Program
{
static Double Calculate(Double R)
{
return R*R*3.1415926;
}
static void Main(string[] args)
{
double r;
r = 5;
Console.WriteLine("r*r*pi={0}", Calculate(r));
Console.ReadKey();
}
}
}
【C#】1.C#基础
标签:VS2017 学习 ++ linq 防止 tox 1.3 后缀 app1
原文地址:https://www.cnblogs.com/yznnnn/p/10544804.html