摘要:
class opmysqli{ private $host = '127.0.0.1'; //服务器地址 private $name = 'root'; //登录账号 private $pwd = '111'; ... 阅读全文
摘要:
tb_admin 管理员表CREATE TABLE `tb_admin` ( `id` int(11) NOT NULL AUTO_INCREMENT, `manager` varchar(20) CHARACTER SET gb2312 NOT NULL, `password` varcha... 阅读全文
摘要:
static void Main(string[] args) { int[] a = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,0,11}; int max; int min; ... 阅读全文
摘要:
int temp; int[] a = { 2, 5, 8, 9, 10, 11, 7, 6 }; for (int i = 0; i a[j+1]) { //如果后一项比第一项大 则把最大数放在前面 t... 阅读全文
摘要:
static void Main(string[] args) { int[] a = { 6, 8, 9, 5, 2, 165, 58966 }; Console.WriteLine("最大值为{0}",max(a)); ... 阅读全文
摘要:
static void Main(string[] args) { string[] a = { "梅西", "卡卡", "郑大世" }; Console.WriteLine(ceshi(a)); ... 阅读全文
摘要:
static void Main(string[] args) { int[] myarray = { 1, 5, 8, 9, 11,2, 6, 2, 4, 6, 3 }; int maxindex; Console.... 阅读全文
摘要:
static void Main(string[] args) { Console.WriteLine("请输入年份"); int year = Convert.ToInt32(Console.ReadLine()); ... 阅读全文