給定一個數字N,我們要找出第N個偶數。
偶數是能夠被2整除且餘數為零的數字。例如2、4、6、8、10等。
如果我們仔細觀察偶數列表,我們也可以表示它們為
2*1=2, 2*2=4, 2*3=6, 2*4=8,. ..2*N。
因此,為了解決這個問題,我們可以簡單地將數字N乘以2,這樣結果就是能夠被2整除的數字,也就是偶數。
Input: n = 4 Output: 8 The first 4 even numbers will be 2, 4, 6, 8, .. Input: n = 10 Output: 20
START STEP 1-> DECLARE AND SET n AS 10 STEP 2-> PRINT n*2 NUMBER STOP
#include <stdio.h> int main(int argc, char const *argv[]){ int n = 10; printf("Nth even will be:%d", n*2); return 0; }
Nth even will be:20
以上是C程式求第n個偶數的詳細內容。更多資訊請關注PHP中文網其他相關文章!