上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 33 下一页
  2021年9月3日
摘要: 1 //点击按钮出来对话框———————————————— 2 3 1.首先添加 对话框(标识符) 4 2.在点击按钮出来第二个对话框,直接鼠标右键 新建 类 5 3.在.CPP添加新建类的 头文件 6 4.在第一个对话框的按钮添加点击事件 7 5.在事件中填写 模态代码: 8 CDlgExec d 阅读全文
posted @ 2021-09-03 09:27 Bytezero! 阅读(49) 评论(0) 推荐(0)
摘要: 1 数据库语句: 2 CREATE DATABASE 创建新数据库 3 ALTER DATABASE 修改数据库 4 CREATE TABLE -—-- -创建新表 5 ALTER TABLE - 变更(改变)数据库表 6 DROP TABLE 删除表 7 CREATE INDEX - 创建索引(搜 阅读全文
posted @ 2021-09-03 09:26 Bytezero! 阅读(236) 评论(0) 推荐(0)
  2021年9月1日
摘要: 1 /* 2 * 从键盘读入学生成绩 找出最高分 并输出学生等级成绩 3 * 成绩>=最高分-10 等级为’A‘ 4 * 成绩>=最高分-20 等级为’B‘ 5 * 成绩>=最高分-30 等级为'C' 6 * 其余 等级为’D‘ 7 * 8 */ 9 10 11 public static void 阅读全文
posted @ 2021-09-01 13:02 Bytezero! 阅读(477) 评论(0) 推荐(0)
摘要: 1 public static void main(String[] args) 2 { 3 int[] arr = new int[] {8,6,3,1,9,5,4,7}; 4 int[] index = new int[] {3,2,7,0,4,5,1,6,3,7,3}; 5 String te 阅读全文
posted @ 2021-09-01 11:58 Bytezero! 阅读(971) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-09-01 11:32 Bytezero! 阅读(51) 评论(0) 推荐(0)
摘要: 1 public static void main(String[] args) 2 { 3 int[] arry = new int[4]; //int 默认值0 //浮点型 0.0 4 for(int i =0; i < arry.length;i++) 5 { 6 System.out.pri 阅读全文
posted @ 2021-09-01 11:05 Bytezero! 阅读(379) 评论(0) 推荐(0)
  2021年8月29日
摘要: 1 public class FamliyAccount 2 { 3 4 public static void main(String[] args) 5 { 6 // TODO Auto-generated method stub 7 8 boolean isFlag = true; 9 //用于 阅读全文
posted @ 2021-08-29 10:28 Bytezero! 阅读(170) 评论(0) 推荐(0)
  2021年8月28日
摘要: 1 //100以内的质数的输出(从2开始,到这个数-1结束为止,都不能被这个数本身整除) 2 boolean isFlag = true; //标识i是否被j除尽,修改其值 3 4 for(int i =2; i<=100;i++) 5 { 6 for(int j = 2;j < i;j++) 7 阅读全文
posted @ 2021-08-28 18:22 Bytezero! 阅读(106) 评论(0) 推荐(0)
摘要: 1 //9*9乘法表 2 3 for(int i =1;i<10;i++) 4 { 5 for(int j = 1;j <=i;j++) 6 { 7 System.out.print(i+"*"+j+"="+i*j+"\t"); 8 } 9 System.out.println(); 10 } 阅读全文
posted @ 2021-08-28 16:28 Bytezero! 阅读(265) 评论(0) 推荐(0)
摘要: 1 /* 2 3 * 4 ** 5 *** 6 **** 7 ***** 8 9 */ 10 11 for(int i = 1; i <=5;i++) 12 { 13 for(int j = 1;j<=i;j++) 14 { 15 System.out.print("*"); 16 } 17 Sys 阅读全文
posted @ 2021-08-28 16:15 Bytezero! 阅读(98) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 33 下一页