Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

โปรแกรมหาเทอม N ของซีรีส์ 3, 5, 33, 35, 53… ใน C++


ในบทช่วยสอนนี้ เราจะพูดถึงโปรแกรมเพื่อค้นหาเทอมที่ N ของชุดที่ 3, 5, 33,35, 53…

สำหรับเรื่องนี้เราจะมีเลขเด็ดมาให้ งานของเราคือค้นหาคำศัพท์สำหรับชุดที่กำหนด ณ ตำแหน่งนั้น

ตัวอย่าง

#include <bits/stdc++.h>
using namespace std;
//finding the nth term in the series
int printNthElement(int n){
   int arr[n + 1];
   arr[1] = 3;
   arr[2] = 5;
   for (int i = 3; i <= n; i++) {
      if (i % 2 != 0)
         arr[i] = arr[i / 2] * 10 + 3;
      else
         arr[i] = arr[(i / 2) - 1] * 10 + 5;
   }
   return arr[n];
}
int main(){
   int n = 6;
   cout << printNthElement(n);
   return 0;
}

ผลลัพธ์

55