摘要:        
1 #include <iostream> 2 using namespace std; 3 int a(int c){ 4 if(c<=2){ 5 return c; 6 }else{ 7 return a(c-1)+(c-2); 8 } 9 } 10 int main(int argc, cha    阅读全文
posted @ 2023-07-31 19:31
黛玉醉打将门神
阅读(17)
评论(0)
推荐(0)
        
            
        
        
摘要:        
1 #include <iostream> 2 using namespace std; 3 int zuida(int c,int k){ 4 if(c%k==0){ 5 return k; 6 }else{ 7 return zuida(k,c%k); 8 } 9 } 10 int main(i    阅读全文
posted @ 2023-07-31 19:16
黛玉醉打将门神
阅读(15)
评论(0)
推荐(0)
        
                    
                
浙公网安备 33010602011771号