show databases; use 库名; show tables; show tables from 库名 select database(); create table 名字( id int, name varchar(20)); desc 表名; select * from 表名; insert into 表名 (a,b,…,f) values(1,2,3,…,7); update 库名 set name‘lilei’ where id1; delete f…
题目1: 有两只老虎,一只体重为180kg,一只体重为200kg,请用程序实现判断两只老虎的体重是否相同。
代码如下:
public class OperatorTest {public static void main (String[] args) {int w1 180;int w2 200;boolean ans w1 w2?true:f…
Scanner使用的基本步骤: 1.导包:
import java.util.Scanner;2.创建对象:
Scanner sc new Scanner(System.in);3.接收数据:
int i sc.nextInt();代码如下:
import java.util.Scanner;public class OperatorTest {public static void main (String[] args) {//创建对象Scan…