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);
}