无语的小紫英 发表于 2023-12-4 16:34

C#简单界面练习—每日利息计算器


最近在学习C#,想写windos的软件,了解了一圈,然后就入手开始学习C#,感觉C#还是很容易实现一些windos平台的小工具。



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 TaxCalc
{
    public partial class Form1 : Form
    {
      public Form1()
      {
            InitializeComponent();
      }

      private void button1_Click(object sender, EventArgs e)
      {
            int price;
            bool successA = int.TryParse(this.textBox1.Text, out price);
            float interestRate;
            bool successB = float.TryParse(this.textBox2.Text, out interestRate);
            if (successA && successB)
            {
                float liv = (float)(price * interestRate) / 365;
                this.textBox3.Text = liv.ToString();
            }else {
                this.textBox3.Text = "格式错误!";
            }
      }
    }
}


源码地址:https://ide.lanzoum.com/b00rxfiti
密码: 3u69

qingfeng0923 发表于 2023-12-4 17:01

C#还是不错的,只不过目前国内就业环境确实不太理想

无语的小紫英 发表于 2023-12-4 17:19

qingfeng0923 发表于 2023-12-4 17:01
C#还是不错的,只不过目前国内就业环境确实不太理想

学学自己搞小工具玩,就业我就不敢想了

bj9ye666 发表于 2023-12-4 18:25

xiao小财迷首选,自己理财爽歪歪

星星之夜 发表于 2023-12-4 18:37

using System;

class Program
{
    static void Main(string[] args)
    {
      Console.WriteLine("请输入存款金额:");
      double principal = Convert.ToDouble(Console.ReadLine());

      Console.WriteLine("请输入利率(年利率百分比):");
      double interestRate = Convert.ToDouble(Console.ReadLine());

      Console.WriteLine("请输入存款期限(年):");
      int years = Convert.ToInt32(Console.ReadLine());

      double interest = CalculateInterest(principal, interestRate, years);
      double totalAmount = principal + interest;

      Console.WriteLine($"存款利息为:{interest}");
      Console.WriteLine($"存款总额为:{totalAmount}");
    }

    static double CalculateInterest(double principal, double interestRate, int years)
    {
      double interest = principal * interestRate / 100 * years; // 利息计算公式
      return interest;
    }
}

无语的小紫英 发表于 2023-12-4 18:55

bj9ye666 发表于 2023-12-4 18:25
xiao小财迷首选,自己理财爽歪歪

看到新闻别人又中了2个多亿,酸了{:1_937:},利息每天都有18万了

无语的小紫英 发表于 2023-12-4 18:56

星星之夜 发表于 2023-12-4 18:37
using System;

class Program


{:1_921:}感谢大佬指教

hlowld 发表于 2023-12-4 19:42

强,支持一个

oneevangelion1 发表于 2023-12-4 20:52

强,支持一个,每天对着那点钱算利息

moruye 发表于 2023-12-4 21:11

页: [1] 2
查看完整版本: C#简单界面练习—每日利息计算器