importjava.lang.*; importjava.io.*; /* Name of the class has to be "Main" only if the class is public. */ classIdeone{ publicstaticvoidmain(String[]args){ String[]ab={"a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r", ...
# 浏览器登录码云后,个人头像上点设置、然后点ssh公钥、随便填个标题,然后赋值 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6MWhGXSKdRxr1mGPZysDrcwABMTrxc8Va2IWZyIMMRHH9Qn/wy3PN2I9144UUqg65W0CDE/thxbOdn78MygFFsIG4j0wdT9sdjmSfzQikLHFsJ02yr58V6J2zwXcW9AhIlaGr+XIlGKDUy5mXb4OF+6UMXM6HKF7rY9FY...
gitee # 配置用户名 git config --global "username" //(名字,随意写) # 配置邮箱 git config --global user.email "55333@" // 注册账号时使用的邮箱 # 配置ssh免密登录 ssh-keygen -t ed25519 -C "xxxxx@xxxxx.com" 三次回车后生成了密钥,也可以查看密钥 cat ~/.ssh/id_ed25519.pub 浏览器登录...