吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 897|回复: 13
收起左侧

[学习记录] C#简单界面练习—每日利息计算器

[复制链接]
无语的小紫英 发表于 2023-12-4 16:34

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

搜狗截图23年12月04日1625_1.jpg

[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 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 = "格式错误!";
            }
        }
    }
}


微信截图_20231204163318.png
源码地址:https://ide.lanzoum.com/b00rxfiti
密码: 3u69

免费评分

参与人数 1热心值 +1 收起 理由
shanzhanzhe + 1 谢谢@Thanks!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

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
星星之夜 发表于 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个多亿,酸了,利息每天都有18万了
 楼主| 无语的小紫英 发表于 2023-12-4 18:56
星星之夜 发表于 2023-12-4 18:37
using System;

class Program

感谢大佬指教
hlowld 发表于 2023-12-4 19:42
强,支持一个
oneevangelion1 发表于 2023-12-4 20:52
强,支持一个,每天对着那点钱算利息
头像被屏蔽
moruye 发表于 2023-12-4 21:11
提示: 作者被禁止或删除 内容自动屏蔽
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-24 17:26

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表