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

โปรแกรม C สำหรับเลขคี่ที่ n


ให้ตัวเลข N เราต้องหาเลขคี่ที่ N

เลขคี่คือจำนวนที่หารด้วย 2 ไม่สมบูรณ์และเศษที่เหลือไม่เป็นศูนย์ ชอบ 1, 3, 5, 7, 9,….

หากเราสังเกตรายการเลขคู่อย่างใกล้ชิด เราก็สามารถแทนค่าเหล่านั้นเป็น

(2*1)-1=1, (2*2)-1=3,( 2*3)-1=5, (2*4)-1=7,….(2*N)-1.

ดังนั้น ในการแก้ปัญหา เราสามารถคูณจำนวน N กับ 2 แล้วลบ 1 ออกจากผลลัพธ์ ซึ่งเป็นจำนวนคี่

ตัวอย่าง

Input: 4
Output: 7
The 4th odd number is 1, 3, 5, 7..
Input: 10
Output: 19

อัลกอริทึม

START
   STEP 1 -> Declare and assign an integer ‘n’.
   STEP 2 -> Print n*2-1(odd number).
STOP

ตัวอย่าง

#include <stdio.h>
int main(int argc, char const *argv[]){
   int n = 10;
   //for odd numbers we can simply subtract 1 to the even numbers
   printf("Nth odd number = %d", n*2-1);
   return 0;
}

ผลลัพธ์

Nth odd number = 19