解题思路:
注意事项:
参考代码:
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner scanner=new Scanner(System.in);
int n,result;
/*判断是否输入完成*/
do {
n=scanner.nextInt();
if(n!=0){
result = cowCompute(n);
System.out.println(result);
}
else{
return;
}
}while(true);
}
/*计算方法*/
public static int cowCompute(int n) {
/*前4年输出*/
if(n==1 || n==2 || n==3 ) {
return n;
}
/*四年后进入递归*/
return cowCompute(n-1)+cowCompute(n-3);
}
0.0分
2 人评分
钟神赛车 (C语言代码)浏览:911 |
C语言程序设计教程(第三版)课后习题7.1 (C语言代码)浏览:539 |
C语言程序设计教程(第三版)课后习题10.7 (C语言代码)浏览:568 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:562 |
WU-C语言程序设计教程(第三版)课后习题12.1 (C++代码)浏览:1024 |
哥德巴赫曾猜测 (C语言代码)浏览:2562 |
1012题解浏览:938 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:537 |
printf基础练习2 (C语言代码)浏览:547 |
简单的a+b (C语言代码)浏览:600 |