openAI write codes. Tried one example:

来源: 2023-02-18 14:45:18 [博客] [旧帖] [给我悄悄话] 本文已被阅读:

/*
Write a Java function that recursively computes the power of an integer. The method looks like: public static int power(int base, int exp)
*/

The function is:

上面是我输入的要求。下面是openAI Codex 的回复, 100分!

 

 


public static int power(int base, int exp) {
    if (exp == 0) {
        return 1;
    }
    return base * power(base, exp - 1);
}