摘要:
EOF是结束字符 ASCII码: C语言中经常使用 如何输入? windows:ctrl+z linux:ctrl+d 阅读全文
摘要:
ubuntu 24.2 使用系统自带的截图与录屏工具 按右上角print screen键带出 阅读全文
摘要:
debian():APT redhat(centos):YUM install and update software in Linux 阅读全文
摘要:
import pdb #pdb.set_trace() ad={} al=[] #a="64:2,128:1,32:4,1:128" list1=input().split(',') #list1=[] for i in list1: #ad.append(dict(i.split(':'))) t 阅读全文
摘要:
import java.util.Scanner;class FindGold{ private static int m,n,k; private static boolean[][] visited; public static void main(String[] args) { Scanne 阅读全文
摘要:
import java.util.Scanner;import java.lang.Math;import java.util.Arrays;public class HJ009{ public static void main(String[] args) { int aim,digit,pot; 阅读全文
摘要:
id 阅读全文
摘要:
package com.challenger; import com.challenger.Util; public class InsertSort { public static void main(String[] args) { int i,j,exNum,k; int[] arr={6,3 阅读全文
摘要:
package com.challenger;import com.challenger.Util;public class SelectSortDoWhile{ public static void main(String[] args) { //define array int[] arr={5 阅读全文
摘要:
public class SelectSortWhile{ public static void main(String[] args) { //define array int[] arr={5,8,2,3,7,4,10,6,9,1}; //define i as array loop index 阅读全文