该文被密码保护。 阅读全文
posted @ 2017-05-12 11:35 sky20080101 阅读(0) 评论(0) 推荐(0) 编辑
摘要: import java.util.*; public class ArraySortScore { //完成 main 方法 public static void main(String[] args) { int counter=0; int[] scores=new int[]{89 , -23 ,... 阅读全文
posted @ 2017-05-12 10:59 sky20080101 阅读(293) 评论(0) 推荐(0) 编辑
摘要: 100 ############################### 100 100 require 的使用方法如 require("MyRequireFile.php"); 。这个函数通常放在 PHP 程序的最前面,PHP 程序在执行前,就会先读入 require 所指定引入的文件,使它变成 PHP 程序网页的一部份。常用的函数,亦可以这个方法将它引入网页中。 inclu... 阅读全文
posted @ 2017-05-10 14:30 sky20080101 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 'andy', 'sex' => 'male' ); ?> 阅读全文
posted @ 2017-05-10 14:13 sky20080101 阅读(247) 评论(0) 推荐(0) 编辑
摘要: "); echo("我是关键字" . True) /* 我是变量True 我是关键字1 */ ?> 阅读全文
posted @ 2017-05-10 14:11 sky20080101 阅读(82) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class A { public A() { Console.WriteLine("pu... 阅读全文
posted @ 2017-05-10 14:09 sky20080101 阅读(206) 评论(0) 推荐(0) 编辑
摘要: C#中集合ArrayList与Hashtable的使用 http://blog.csdn.net/linukey/article/details/42506819 ArrayList: 一. 注意事项: 1.可以指定ArrayList集合的初始大小 var list = new ArrayList( 阅读全文
posted @ 2017-05-07 15:07 sky20080101 阅读(409) 评论(0) 推荐(0) 编辑
摘要: namespace ConsoleQuotes { class Program { static void Main(string[] args) { string str = @"abc ""def"" ghi """"jkl"""" mn"; Console.WriteLine(str); ... 阅读全文
posted @ 2017-05-06 19:41 sky20080101 阅读(277) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConstructCallVirtual { class Program { static void Main(string[] args) { ... 阅读全文
posted @ 2017-05-05 17:24 sky20080101 阅读(101) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { object val = 134; byte bit8 = Convert.ToByte((int)val); Console.WriteLine("[{0}],[{1:X}]", bit8, bit... 阅读全文
posted @ 2017-05-04 15:39 sky20080101 阅读(613) 评论(0) 推荐(0) 编辑