我正在尝试找到一种在 gitlab CE 中搜索多个项目代码的方法。
有没有人遇到过这种情况,或者有推荐的方法?
(我意识到,如果这是可能的,那么我可能需要创建一个脚本来多次模拟 GUI 中的当前调用并组合结果。)
所以对于我的生活,我无法弄清楚为什么没有输入加密的for循环!我已经放置了一些打印语句,以确认它没有进入理论上它应该在内部打印3次,而是它进入第一个条件但是然后不进入第一个for循环(由i控制的那个)
//method for Ceaser encryption takes in a string in plain text or encrypted form, the key, and mode option
public static String ceaser(String a, int x, int T ){
System.out.println(a);
System.out.println(x);
System.out.println(T);
String full = "abcdefghijklmnopqrstuvwxyz";
String output ="";
//used for type matching for concat method
String convertChar="";
char[] alpha = full.toCharArray();
//used to find the inital value (index of the plain text letter in the alphabet
int position = 0;
//selecting encryption
if(T==1){
System.out.println("im …Run Code Online (Sandbox Code Playgroud)