随笔分类 - 数据算法
数据算法
摘要:阅读目录 一:实例 二:运行效果 一:实例 private void btnJiSuan_Click(object sender, EventArgs e) { int a = 0, b = 0, c = 0, d = 0;//定义变量 //公鸡在百元中的遍历 for (a = 1; a <= 19; a++) { //母鸡在百元中的遍历 for (b = 1; b <= 33; b++) ...
阅读全文
摘要:阅读目录 一:实例 二:运行效果 一:实例 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { int[] numbers = { 3, 2, 7, 5, 8, 11, 29, 30, 4 }; ...
阅读全文