摘要:
数据库基本操作 增删改查 以SQL server 首先要创建一个数据库 创建一个数据库的语句 create database test 创建一个表格 create table testTab ( --创建语句 id int not null primary key, --创建一个int 类型的id 阅读全文
摘要:
反转排序 原理:达到条件后第一个与倒数第一个元素替换 交换位置 达到反转的效果 public class SortReverse { public static void main(String[] args) { int arr[]={10,20,30,40,50,60,70}; ReversSo 阅读全文
摘要:
public class Palindrome { public static void main(String[] args) { Solution s =new Solution(); System.out.println(s.isPalindrome(121)); System.out.pri 阅读全文