什来之比 发表于 2021-10-5 10:27:53

通过C#编程实现递归算法的完备源代码

基于视频解说的通过C#编程实现递归算法源代码,复制可用无需更改,明白递归算法:
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;namespace WindowsFormsApplication4{    public partial class Form1 : Form    {      private string str = null;      public Form1()      {            InitializeComponent();      }      private void button1_Click(object sender, EventArgs e)      {            int a;            if(int.TryParse(textBox1.Text,out a))            {                textBox2.Text = GetArithmetic(a).ToString();                              textBox3.Text = str;                           }            else            {                MessageBox.Show("请输入正确的数字");            }      }      int GetArithmetic(int i)      {            str = str + i + ",";            if (i

什来之比 发表于 2021-10-5 12:12:25

代码完整

乐娱a 发表于 2021-10-5 20:21:04

转发了

刀客觅知音 发表于 2021-10-5 22:45:49

[赞]
页: [1]
查看完整版本: 通过C#编程实现递归算法的完备源代码