设计一个简单的windows应用程序,在文本框中随意输入一个日期,单击“确定”按钮时显示这一天是星期几

 我来答
帷帷环游记
高粉答主

2020-06-15 · 开心之余可以了解网络的新鲜事
帷帷环游记
采纳数:179 获赞数:15321

向TA提问 私信TA
展开全部

示例:

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

namespace test

{

public partial class Form1 : Form

{

public Form1()

{

InitializeComponent();

}

enum WeekDay { 星期天,星期一,星期二,星期三,星期四,星期五,星期六};

private void button1_Click(object sender, EventArgs e)

{

DateTime dt = Convert .ToDateTime ( textBox1 .Text);

label1.Text = "\n这一天是" + dt.DayOfWeek;

WeekDay wd =(WeekDay ) dt.DayOfWeek;

label1.Text+= "(即′:"+wd +")";

}

}

}

扩展资料

设计一个简单的Windows程序,输入5个数字,然后排序并输出;

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

namespace bb

{

public partial class Form1 : Form

{

public Form1()

{

InitializeComponent();

}

int[]a=new int[5];

int i = 0;

private void button1_Click(object sender, EventArgs e)

{

if (i < 5)

{

a[i] = Convert.ToInt32(textBox1.Text);

label2.Text += Convert .ToString( a[i])+"  ";

i++;

textBox1.Text = "";

}

}

private void Form1_Load(object sender, EventArgs e)

{

label2.Text = "排序前的数字序列:";

}

private void button2_Click(object sender, EventArgs e)

{

Array.Sort(a);

label2.Text += "\n排序后的数字序列:"+a[0]+" "+a[1]+" "+a[2]+" "+a[3]+" "+a[4];

}

}

}

博思aippt
2024-07-20 广告
作为深圳市博思云创科技有限公司的工作人员,对于Word文档生成PPT的操作,我们有以下建议:1. 使用另存为功能:在Word中编辑完文档后,点击文件->另存为,选择PowerPoint演示文稿(*.pptx)格式,即可将文档内容转换为PPT... 点击进入详情页
本回答由博思aippt提供
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式