博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
第十六周总结
阅读量:6072 次
发布时间:2019-06-20

本文共 1780 字,大约阅读时间需要 5 分钟。

namespace 设计

{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void label7_Click(object sender, EventArgs e)

{

}

private void label10_Click(object sender, EventArgs e)

{

}

private void label13_Click(object sender, EventArgs e)

{

}

private void label14_Click(object sender, EventArgs e)

{

}

private void textBox1_TextChanged(object sender, EventArgs e)

{

}

private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)

{
string Name = comboBox1.Text.Trim();

StringBuilder sql = new StringBuilder("select * from biao where 1=1");

if (!String.IsNullOrEmpty(Name))

{

sql.Append("and Name like '%" + Name + "%'");

}

 

}

private void comboBox2_SelectedIndexChanged(object sender, EventArgs e)

{
string Name = comboBox1.Text.Trim();

StringBuilder sql = new StringBuilder("select * from biao where 1=1");

if (!String.IsNullOrEmpty(Name))

{

sql.Append("and Name like '%" + Name + "%'");

}

 

}

private void textBox10_TextChanged(object sender, EventArgs e)

{
int[] score;
Random rnd = new Random();
int n, sum = 0;

n = int.Parse(Console.ReadLine());

score = new int[n];
for (int i = 0; i < score.Length; i++)
{
score[i] = rnd.Next(25);
sum += score[i];

}

}

private void textBox11_TextChanged(object sender, EventArgs e)

{
int[] score;
Random rnd = new Random();
int n, sum = 0;

n = int.Parse(Console.ReadLine());

score = new int[n];
for (int i = 0; i < score.Length; i++)
{
score[i] = rnd.Next(25);
sum += score[i];

}

}

private void textBox4_TextChanged(object sender, EventArgs e)

{
int[] score;
Random rnd = new Random();
int n, sum = 0;

n = int.Parse(Console.ReadLine());

score = new int[n];
for (int i = 0; i < score.Length; i++)
{
score[i] = rnd.Next(25);
sum += score[i];
}
}

代码未完结正在解决中

转载于:https://www.cnblogs.com/your-world/p/6219530.html

你可能感兴趣的文章
Rails
查看>>
Lightning学習資料
查看>>
字节流与字符流的区别详解
查看>>
js数组去重的4个方法
查看>>
Floyd判圈算法
查看>>
hdu 4965 矩阵快速幂 矩阵相乘性质
查看>>
iOS - App 应用
查看>>
用户登录验证
查看>>
TSVNCache.exe严重占用CPU问题
查看>>
详细易懂的解释变量和指针变量重新赋值的过程和问题
查看>>
Python 操作 MYSQL
查看>>
关于解决javaEE端口占用的方法
查看>>
mysql 更改表名称
查看>>
handlerbars入门学习
查看>>
关于“VS2010语法检查红线不见了”的解决方案
查看>>
C++模板使用介绍
查看>>
Object-C中 - self 和super 的含义
查看>>
Optimizing graphics performance
查看>>
C#方法拓展
查看>>
kafka的分区分配策略
查看>>