用 C++ 查找前 N 个 Iccanobif 数的程序


在本教程中,我们将讨论一个查找 N 个 lccanobif 数字的程序。

为此,我们将提供一个整数。我们的任务是找到该位置的 lccanobif 数字。它们与斐波那契数类似,但不同的是,我们在反转数字后将前两个数字相加。

示例

 实时演示

#include <bits/stdc++.h>
using namespace std;
//reversing the digits of a number
int reverse_digits(int num){
   int rev_num = 0;
   while (num > 0) {
      rev_num = rev_num * 10 + num % 10;
      num = num / 10;
   }
   return rev_num;
}
//printing the first N lccanobif numbers
void icanobifNumbers(int N){
   int first = 0, second = 1;
   if (N == 1)
      cout << first;
   else if (N == 2)
      cout << first << " " << second;
   else {
      cout << first << " " << second << " ";
      for (int i = 3; i <= N; i++) {
         int x = reverse_digits(first);
         int y = reverse_digits(second);
         cout << x + y << " ";
         int temp = second;
         second = x + y;
         first = temp;
      }
   }
}
int main(){
   int N = 12;
   icanobifNumbers(N);
   return 0;
}

输出

0 1 1 2 3 5 8 13 39 124 514 836

更新于:09-Sep-2020

77 次浏览

开启您的 职业生涯

通过完成课程获得认证

开始
广告