
C#
little Y
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
整数反向显示法
using System;namespace 整数反向显示法{ class Program { static void Main(string[] args) { //将用户输入的整数反向显示出来 int num, nums,num1=1, m = 0, ji = 1, sum = 0; ...原创 2019-12-06 20:01:26 · 331 阅读 · 0 评论 -
杨辉三角
using System;namespace 杨辉三角{ class Program { const int num = 1; static void Main(string[] args) { int n; int upnum = 1; int count...原创 2019-12-06 19:58:08 · 113 阅读 · 0 评论 -
水仙花数
using System;namespace 水仙花数{ class Program { static void Main(string[] args) { int ge = 0, sum = 0; //输出所有这样三位数:这个三位数本身恰好等于其每位数字的立方和(例如:...原创 2019-12-06 19:50:11 · 126 阅读 · 0 评论 -
高斯消元法(02)
using System;namespace 高斯消元法2{ class Program { static int n; static double[,] a; static double[] x; static void xiaoyuan() ...原创 2019-12-06 19:47:23 · 118 阅读 · 0 评论 -
高斯消元法(01)
using System;namespace 高斯消元法解线性方程{ class Program { const int MAX = 10; static double[,] A = new double[MAX, MAX]; static double[] b = new double[MAX]; static...原创 2019-12-06 19:41:58 · 160 阅读 · 0 评论 -
飞行棋
using System;namespace _0925飞行棋{ class Program { //棋盘 public static int[] MAPS = new int[100]; //飞行棋的坐标 public static int[] playerPos = new int[2]; //玩家的坐标...原创 2019-12-06 19:34:02 · 2736 阅读 · 0 评论 -
浮点型数组排列
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 浮点型数组排列{ class Program { static void Main(string[] args)...原创 2019-12-06 19:20:23 · 2252 阅读 · 0 评论 -
乘法表下三角
using System;namespace 乘法表{ class Program { static void Main(string[] args) { //i m //1*1=1 1*2=2 1*3=3 1*4=4 1*5=5 1*6=6 1*7=7 1*8=8 1*9=9 ...原创 2019-12-06 19:08:40 · 435 阅读 · 0 评论 -
不同形状的面积
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 不同形状的面积{ class Program { static void Main(string[] args)...原创 2019-12-06 19:06:47 · 204 阅读 · 0 评论 -
06ArrayList集合长度问题(04)
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Collections;namespace 集合的长度问题{ class Program { stati...原创 2019-12-06 19:02:44 · 169 阅读 · 0 评论 -
06ArrayList集合的练习(03)
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Collections;namespace 集合的练习{ class Program { static ...原创 2019-12-06 19:01:35 · 456 阅读 · 0 评论 -
06ArrayList集合各种方法(02)
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Collections;namespace ArrayList的各种方法{ class Program { ...原创 2019-12-06 18:59:19 · 88 阅读 · 0 评论 -
06ArrayList集合(01)
using System;using System.Collections;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace _06ArrayLIst集合{ class Program { ...原创 2019-12-06 18:58:14 · 110 阅读 · 0 评论 -
05Protected
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace _05Protected{ class Program { static void Main(string[] ...原创 2019-12-06 18:55:33 · 103 阅读 · 0 评论 -
04里氏转换
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace _04里氏转换{ class Program { static void Main(string[] args)...原创 2019-12-06 18:53:17 · 151 阅读 · 0 评论 -
03继承
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace _03继承{ class Program { static void Main(string[] args) ...原创 2019-12-04 19:24:50 · 122 阅读 · 0 评论 -
02字符串的方法(01)
using System;using System.Collections.Generic;using System.Diagnostics;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 字符串的方法{ class Program { static...原创 2019-12-04 19:20:23 · 87 阅读 · 0 评论 -
02字符串的练习(03)
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 字符串练习{ class Program { static void Main(string[] args) ...原创 2019-12-04 19:18:59 · 99 阅读 · 0 评论 -
02字符串的各种方法(02)
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 字符串的各种方法{ class Program { static void Main(string[] args...原创 2019-12-04 19:17:28 · 169 阅读 · 0 评论 -
01学习类,对象,字段,属性,方法,构造函数,析构函数
```csharpusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 学习类_对象_字段_属性_方法_构造函数_析构函数{ **class Program** { ...原创 2019-12-04 19:08:20 · 271 阅读 · 0 评论