12 2021 档案

摘要:1.win+R 调出运行对话框,输入regedit命令 2.在输入框中输入HKEY_CLASSES_ROOT\Directory\shell\cmd 3.在shell文件夹中删除你要删除的即可 1.win+R 调出运行对话框,输入regedit命令 2.在输入框中输入HKEY_CLASSES_ROO 阅读全文
posted @ 2021-12-23 19:26 芸小宇 阅读(1501) 评论(0) 推荐(0)
摘要:1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title></title> 6 <style type="text/css"> 7 .part-one{ 8 width: 500px; 9 height: 60px; 阅读全文
posted @ 2021-12-17 07:55 芸小宇 阅读(993) 评论(0) 推荐(0)
摘要:1 <!DOCTYPE HEML PUBLIC> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <style> 6 html, body 7 { 8 width: 100%; 9 height: 100%; 10 margin: 0; 11 padding 阅读全文
posted @ 2021-12-16 22:36 芸小宇 阅读(43646) 评论(3) 推荐(1)
摘要:3X4 二维数组 求每行的最大值与第一列进行交换,输出原始数据和交换后的数据。 阅读全文
posted @ 2021-12-16 13:06 芸小宇 阅读(177) 评论(0) 推荐(0)
摘要:任意奇数宫格数的输出 阅读全文
posted @ 2021-12-16 12:51 芸小宇 阅读(57) 评论(0) 推荐(0)
摘要:1 import java.util.Random; 2 public class { 3 4 public static void main(String[] args) { 5 int arr[][]=new int [3][4]; 6 int i,j,k; 7 for(i=0;i<arr.le 阅读全文
posted @ 2021-12-16 00:45 芸小宇 阅读(182) 评论(0) 推荐(0)
摘要:1 import java.util.*; 2 public class xxx { 3 4 public static void main(String[] args) { 5 Random sc=new Random(); 6 int b[][]=new int [5][6]; 7 int i, 阅读全文
posted @ 2021-12-15 21:41 芸小宇 阅读(961) 评论(0) 推荐(0)
摘要:与你共享 阅读全文
posted @ 2021-12-15 21:13 芸小宇 阅读(90) 评论(0) 推荐(0)
摘要:1 public class a { 2 public static void main(String[] args) { 3 int arr[]=new int[] {9,8,3,5,2,90,23}; 4 for (int i=0;i<arr.length;i++) 5 { 6 System.o 阅读全文
posted @ 2021-12-09 14:36 芸小宇 阅读(32) 评论(0) 推荐(0)
摘要:1 public class number { 2 3 public static void main(String[] args) { 4 char a[]=new char[26]; 5 int i; 6 for(i=0;i<26;i++) 7 { 8 a[i]=(char)('a'+i); 9 阅读全文
posted @ 2021-12-09 14:29 芸小宇 阅读(752) 评论(0) 推荐(0)
摘要:1 public class a { 2 public static void main(String[] args){ 3 int i=1,j=1; 4 for (i=1;i<=9;i++) 5 { 6 for (j=1;j<=8+i;j++) 7 8 { 9 if(i+j<=9) 10 { 11 阅读全文
posted @ 2021-12-07 21:00 芸小宇 阅读(104) 评论(0) 推荐(0)
摘要:1 public class a{ 2 public static void main(String[] args) { 3 4 int i=1; 5 for (i=1;i<=9;i++) 6 { 7 for (int k=1;k<=9-i;k++) 8 { 9 System.out.print(" 阅读全文
posted @ 2021-12-07 20:52 芸小宇 阅读(550) 评论(0) 推荐(1)
摘要:1 public class number { 2 3 public static void main(String[] args) { 4 5 int i=1,j=1; 6 for (i=-8;i<=8;i++) 7 { 8 for(j=1;j<=8+9-Math.abs(i);j++) { 9 阅读全文
posted @ 2021-12-07 20:45 芸小宇 阅读(419) 评论(0) 推荐(0)
摘要:c语言   打印心形代码1 #include <stdio.h> 2 int main() 3 { 4 int i,j; 5 char c='*'; 6 do{ 7 for(j=1;j<=3;j++) 8 { 9 putchar('\n'); 10 Sleep(400); 11 } 12 for (i=1;i<=3;i++ 阅读全文
posted @ 2021-12-06 19:47 芸小宇 阅读(189) 评论(0) 推荐(0)
摘要:1 2 3 public class a{ 4 5 public static void main(String[] args) { 6 7 int h=10;//猴子的数量 8 int t=3;//每三次踢一个猴子 9 int arr[]=new int[h];//声明数组 10 for(int 阅读全文
posted @ 2021-12-06 19:30 芸小宇 阅读(400) 评论(0) 推荐(0)