10 2022 档案
摘要:组件如下: APP界面如下(码了logo): 功能概述 选择设备进行蓝牙选择 接收arduino发送的文本,存储到变量中,显示在温湿度显示的标签中 断开连接 可以断开蓝牙连接,并让断开连接和清除数据为不可用状态 清除数据 清空温湿度标签的显示内容,清空变量中存储内容
阅读全文
摘要:加法运算符 CREATE DATABASE test;-- 建库 USE test;--进库 CREATE TABLE demo1(name CHAR,age INT);--建表 --查询 SELECT 100+'1',100+'a',100+NULL FROM DUAL; /*结果 + + + +
阅读全文
摘要:public class test { public static void main(String[] args) { //反转数组 int[] arrays = {1,2,3,4,5}; int[] result = new int[arrays.length]; for (int i = 0,
阅读全文
摘要:public class test { public static void main(String[] args){ test t =new test(); int i=t.max(9,8,7,4,50); System.out.print(i); } public int max(int...i
阅读全文
摘要:public class test { public static void main(String[] args){ //输出n行的三角形 int n= 25; for (int j = 0; j < n; j++) { for (int i = j; i < n; i++) { System.o
阅读全文
摘要:public class test { public static void main(String[] args){ for (int j= 1; j <= 9; j++){ for (int i = 1; i <= j; i++) { System.out.print(i+"x"+j+"="+i
阅读全文
摘要:public class test { public static void main(String[] args) { System.out.println("请输入计算x!的x值"); Scanner scanner = new Scanner(System.in); int m = scann
阅读全文

浙公网安备 33010602011771号