上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 35 下一页
摘要: 若两个素数之差为2,则称其为孪生素数 阅读全文
posted @ 2019-01-18 20:25 JAYPARK01 阅读(2196) 评论(0) 推荐(0) 编辑
摘要: 参考了别的发的代码 阅读全文
posted @ 2019-01-18 19:00 JAYPARK01 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 题目描述 写出一个程序,接受一个十六进制的数值字符串,输出该数值的十进制字符串(注意可能存在的一个测试用例里的多组数据)。 输入描述: 输入一个十六进制的数值字符串。 输出描述: 输出该数值的十进制字符串。 链接:https://www.nowcoder.com/questionTerminal/d 阅读全文
posted @ 2019-01-18 18:36 JAYPARK01 阅读(369) 评论(0) 推荐(0) 编辑
摘要: 编写一个 SQL 查询,查找 Person 表中所有重复的电子邮箱。 示例: 根据以上输入,你的查询应返回以下结果: 阅读全文
posted @ 2019-01-18 18:22 JAYPARK01 阅读(328) 评论(0) 推荐(0) 编辑
摘要: The First Web Page In the begining, Tim created the HyperText Markup Language. The Internet was without form and void, and text was upon the face of the monitor and the Han... 阅读全文
posted @ 2019-01-18 18:19 JAYPARK01 阅读(181) 评论(0) 推荐(0) 编辑
摘要: Hello World! Hello World! Welcome to My Web Server. 阅读全文
posted @ 2019-01-18 17:55 JAYPARK01 阅读(472) 评论(0) 推荐(0) 编辑
摘要: 遇到了一些问题,有些地方不能运行 阅读全文
posted @ 2019-01-18 17:42 JAYPARK01 阅读(382) 评论(0) 推荐(0) 编辑
摘要: package 插入排序; public class 插入排序 { public static void InsertSort(int[] source) { int i, j; int insertNode;// 要插入的数据 // 从数组的第二个元素开始循环将数组中的元素插入 ... 阅读全文
posted @ 2019-01-17 23:10 JAYPARK01 阅读(260) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #define High 15 //游戏画面尺寸 #define Width 20 //全局变量 int ball_x,ball_y; //小球的坐标 int ball_vx,ball_vy; //小球的速度 int canvas[High][Width] = {0}; //二维数组存储... 阅读全文
posted @ 2019-01-17 22:49 JAYPARK01 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 这里有张 World 表 如果一个国家的面积超过300万平方公里,或者人口超过2500万,那么这个国家就是大国家。 编写一个SQL查询,输出表中所有大国家的名称、人口和面积。 例如,根据上表,我们应该输出: 阅读全文
posted @ 2019-01-17 22:35 JAYPARK01 阅读(374) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 35 下一页