全做了,不过有些题意,不是很清楚,不知道你具体想要的
◆一题
public class student
{
private string _name;
public string Name
{
get { return _name; }
set { _name = value; }
}
private int _age;
public int Age
{
get { return _age; }
set { _age = value; }
}
}
class Program
{
public int search(string name, student[] list)
{
int i;
for ( i = 0; i < 3; i++)
{
if (list[i].Name == name)
{
break;
}
}
if (i <3)
{
return i;
}
else
{
return -1;
}
}
static void Main(string[] args)
{
student stu1 = new student();
stu1.Name = "小木1";
stu1.Age = 18;
student stu2 = new student();
stu2.Name = "小木2";
stu2.Age = 19;
student stu3 = new student();
stu3.Name = "小木3";
stu3.Age = 20;
student[] stus = new student[20];
stus[0] = stu1;
stus[1] = stu2;
stus[2] = stu3;
Program pro = new Program();
int x = pro.search("小木4",stus);
Console.WriteLine("{0}",x);
}
}
◆二,三,四题
数据库中:
create database zuxia
go
use zuxia
create table admin
(
loginid int primary key identity(1,1),
loginpwd nvarchar(50)
)
insert into admin values('123456')
insert into admin values('123456')
insert into admin values('123456')
create table student
(
sid int primary key identity(1,1),
sname varchar(50) not null,
ssex varchar(5) check(ssex='男' or ssex='女'),
sphone varchar(50) check(len(sphone)=6),
saddress varchar(50) default('四川遂宁')
)
insert into student values('小木1','男','134040',default)
select * from admin
select * from student
class DBhelper
{
public static string strcon = "server=.;uid=sa;database=zuxia;pwd=123456";
public static DataSet Commoncha(string sql)
{
SqlConnection con = new SqlConnection(strcon);
con.Open();
SqlDataAdapter baoma = new SqlDataAdapter(sql,con);
DataSet ds = new DataSet();
baoma.Fill(ds);
return ds;
}
}
private void button1_Click(object sender, EventArgs e)
{
int loginid = int.Parse(this.textBox1.Text.Trim());
String loginpwd = this.textBox2.Text.Trim();
string sql = string.Format("select * from admin where loginid={0} and loginpwd='{1}'",loginid ,loginpwd );
DataSet ds = DBhelper.Commoncha(sql);
if (ds.Tables [0].Rows.Count > 0)
{
MessageBox.Show("登录成功");
}
else
{
MessageBox.Show("登录失败");
}
}
◆五题
public class student
{
private string _name;
public string Name
{
get { return _name; }
set { _name = value; }
}
private int _age;
public int Age
{
get { return _age; }
set { _age = value; }
}
}
class Program
{
public bool AddStudent(string name,int age)
{
int count = 0;
student[] stus = new student[20];
stus[count] = new student();
stus[count].Name = name;
stus[count].Age = age;
count++;
for (int i = 0; i < count; i++)
{
Console.WriteLine("{0} {1}", stus[i].Name, stus[i].Age);
}
return true;
}
static void Main(string[] args)
{
Program pro = new Program();
if (pro.AddStudent("dd", 18))
{
Console.WriteLine("添加成功");
}
}
◆六题
class DBhelper
{
public static string strcon = "server=.;uid=sa;database=zuxia;pwd=123456";
public static DataSet Commoncha(string sql)
{
SqlConnection con = new SqlConnection(strcon);
con.Open();
SqlDataAdapter baoma = new SqlDataAdapter(sql,con);
DataSet ds = new DataSet();
baoma.Fill(ds);
return ds;
}
}
◆七题
class DBhelper
{
public static string strcon = "server=.;uid=sa;database=student;pwd=123456";
public static DataSet Commoncha(string sql)
{
SqlConnection con = new SqlConnection(strcon);
con.Open();
SqlDataAdapter baoma = new SqlDataAdapter(sql,con);
DataSet ds = new DataSet();
baoma.Fill(ds);
return ds;
}
}
public void BindXiaLa()
{
string sql = "select *from admin";
DataSet ds = DBhelper.Commoncha(sql);
this.comboBox1.DataSource = ds.Tables[0];
this.comboBox1.DisplayMember = "loginid";
this.comboBox1.ValueMember = "loginid";
}
private void Form1_Load(object sender, EventArgs e)
{
this.BindXiaLa();
}
◆八题
无参调用
#include<stido.h>
void print()
{
printf("无参调用");
}
void Main()
{
print();
}
有参调用
#include<stdio.h>
void print(int a,int b)
{
int temp;
temp=a;
a=b;
b=temp;
print("a=%d b=%d",&a,&b);
}
void Main()
{
int a=5,b=6;
print(a,b);
}
◆九题
public class student
{
private string _name;
public string Name
{
get { return _name; }
set { _name = value; }
}
private int _age;
public int Age
{
get { return _age; }
set { _age = value; }
}
}
class Program
{
public bool AddStudent(string name)
{
int count = 0;
student[] stus = new student[20];
stus[count] = new student();
stus[count].Name = name;
count++;
foreach (student stu in stus)
{
if (stu != null)
{
Console.WriteLine("{0} ", stu.Name);
}
}
return true;
}
static void Main(string[] args)
{
Program pro = new Program();
if (pro.AddStudent("dd"))
{
Console.WriteLine("添加成功");
}
}
◆十题
create table student
(
sid int primary key identity(1,1),
sname varchar(50) not null,
ssex varchar(5) check(ssex='男' or ssex='女'),
sphone varchar(50) check(len(sphone)=6),
saddress varchar(50) default('四川遂宁')
)
insert into student values('小木4','男','134040',default)
delete from student where sid=5
update student set sname ='小木' where sid=5
truncate table student
温馨提示:内容为网友见解,仅供参考
...是undo、redo或其他方式,怎样可以实现啊?谢谢,悬赏80分
比如,你单击某按扭进行的操作,是不能撤销的,除非自己再写一个可以撤销的方法对事件就行可逆操作。但文本等控件是自带撤销和重复操作的,如:richTextBox1.Undo();richTextBox1.Redo();
80分!c#高手进 为toolstripmenuItem添加keyPress事件
既然toolstripmenuItem里没有KeyPress事件,你添加一个有KeyPress事件的控件不就行了吗,比如添加一个RichTextBox、Label什么的,代码如下 RichTextBox richTextbox = new RichTextBox();private void button1_Click(object sender, EventArgs e){ richTextbox.Size = new Size(100, 100);richTextbox...
想深入学习C#语言,有没有达人知道C#的好的资料呢?
http:\/\/www.enet.com.cn\/eschool\/video\/c_peng\/这个鹏哥讲的不错,挺好的入门视频,带你从一个不懂编程的人学会用C#和.net平台。如果是会其他语言,转成C#,则直接自己编写个小项目试试就好了,现在的语言很容易就转换了,就是开发环境需要熟悉一点时间。 已赞过 已踩过< 你对这个回答的评价是? 评论 收起 ...
...看补充。谢谢了。80分希望能找到解答,感兴趣的互相学习
1:利用配置文件保存窗体的新加信息。每次打开窗体时先检查配置文件,读出按键信息并加到页面上;每新加按钮时,同时将对应按钮信息添加到配置文件。注:按钮信息包含名称、位置坐标、响应事件等(你的例子好像只要个数就够了)。2:可以让所有的按钮都响应同一个单击事件(如你的butClick),只是在单击事...
学好软体工程专业,主要精通科目都有哪些 ? 高数的用处有多大。_百度...
软体工程专业考研都考哪些科目? 一般院校都是全国统考,考四门课程:计算机组成原理、计算机作业系统、计算机体系结构、计算机网路,有两种提醒,70分选择题,80分简答题。有哪些大学有软体工程专业? 软体工程专业是2002年国家教育部新增专业,随着计算机应用领域的不断扩大及中国经济建设的不断发展,软体...
100分求C#正则提取图片,要写详细啊,本人新手!
\/\/\/ 正则图片 \/\/\/ \/\/\/ <returns><\/returns> private string[] setReg(){ string str = ""+ "图片地址1 图片地址2"+ " 图片地址3
关于asp.net (C#)控制新闻标题显示条数的问题!高手请进。
TempStr += "<TD class=sSign width=\\"80%\\" style=\\"line-height:22px\\">";TempStr += "";} TempStr += "";return TempStr;} 大致就是这样的
实习的日记
我们的原样模型室80分,改建后的的是85分。有点失望,有点失落,以为自己做的很好的呢,可能有点不知天高地厚吧。但看了别人的,真的发现了自己的不足之处,一定会好好改进。之后,段然老师布置了下一个模型任务:做一个自己改进后的建筑的层板模型。我们认真讨论过后,确定了模型建筑以及它的尺寸,为第二天做模型做...
国开学习指南网上作业答案
d. 统设必修课程平均成绩不低于80分,其他课程平均成绩不低于75分题目8国家开放大学“希望的田野”奖学金的奖励对象是(d )选择一项:a. 国家开放大学八一学院、总参学院和空军学院的在读优秀现役士官学生b. 国家开放大学各专业在读优秀学生c. 国家开放大学残疾人教育学院的在读残疾人优秀学生d. 教育部“一村一名...
求做个电子商务网站
考查内容:ASP.NET(C#)技术结合Sql Server 2000数据库进行电子商务网站开发设计。选题方向:儿童读本网上租赁配送系统(05计本3班)婴儿用品网上销售配送系统(05计本4班)服装鞋帽网上销售配送系统(08专升本)系统实现:(1)软件实现 80分(2)开发设计文档(按软件工程的方法)20分软件要求:系统必须要具备以下几个功能:(1)...