首页
/
每日頭條
/
職場
/
c語言算法如何提高
c語言算法如何提高
更新时间:2024-11-15 20:58:01

c語言算法如何提高?算法是一個程序和軟件的靈魂,作為一名優秀的程序員,隻有對一些基礎的算法有着全面的掌握,才會在設計程序和編寫代碼的過程中顯得得心應手本文是近百個C語言算法系列的第二篇,包括了經典的Fibonacci數列、簡易計算器、回文檢查、質數檢查等算法也許他們能在你的畢業設計或者面試中派上用場,現在小編就來說說關于c語言算法如何提高?下面内容希望能幫助到你,我們來一起看看吧!

c語言算法如何提高(10大C語言基礎算法)1

c語言算法如何提高

算法是一個程序和軟件的靈魂,作為一名優秀的程序員,隻有對一些基礎的算法有着全面的掌握,才會在設計程序和編寫代碼的過程中顯得得心應手。本文是近百個C語言算法系列的第二篇,包括了經典的Fibonacci數列、簡易計算器、回文檢查、質數檢查等算法。也許他們能在你的畢業設計或者面試中派上用場。

1、計算Fibonacci數列

Fibonacci數列又稱斐波那契數列,又稱黃金分割數列,指的是這樣一個數列:1、1、2、3、5、8、13、21。

C語言實現的代碼如下:

/* Displaying Fibonacci sequence up to nth term where n is entered by user. */ #include <stdio.h> int main() { int count, n, t1=0, t2=1, display=0; printf("Enter number of terms: "); scanf("%d",&n); printf("Fibonacci Series: %d %d ", t1, t2); /* Displaying first two terms */ count=2; /* count=2 because first two terms are already displayed. */ while (count<n) { display=t1 t2; t1=t2; t2=display; count; printf("%d ",display); } return 0; }

結果輸出:

Enter number of terms: 10 Fibonacci Series: 0 1 1 2 3 5 8 13 21 34

也可以使用下面的源代碼:

/* Displaying Fibonacci series up to certain number entered by user. */ #include <stdio.h> int main() { int t1=0, t2=1, display=0, num; printf("Enter an integer: "); scanf("%d",&num); printf("Fibonacci Series: %d %d ", t1, t2); /* Displaying first two terms */ display=t1 t2; while(display<num) { printf("%d ",display); t1=t2; t2=display; display=t1 t2; } return 0; }

結果輸出:

Enter an integer: 200 Fibonacci Series: 0 1 1 2 3 5 8 13 21 34 55 89 144

2、回文檢查

源代碼:

/* C program to check whether a number is palindrome or not */ #include <stdio.h> int main() { int n, Reverse=0, rem,temp; printf("Enter an integer: "); scanf("%d", &n); temp=n; while(temp!=0) { rem=temp; reverse=reverse*10 rem; temp/=10; } /* Checking if number entered by user and it's reverse number is equal. */ if(reverse==n) printf("%d is a palindrome.",n); else printf("%d is not a palindrome.",n); return 0; }

結果輸出:

Enter an integer: 12321 12321 is a palindrome.

3、質數檢查

注:1既不是質數也不是合數。

源代碼:

/* C program to check whether a number is prime or not. */ #include <stdio.h> int main() { int n, i, flag=0; printf("Enter a positive integer: "); scanf("%d",&n); for(i=2;i<=n/2; i) { if(n%i==0) { flag=1; break; } } if (flag==0) printf("%d is a prime number.",n); else printf("%d is not a prime number.",n); return 0; }

結果輸出:

廣告商務合作,請聯系0755-33248146

,
Comments
Welcome to tft每日頭條 comments! Please keep conversations courteous and on-topic. To fosterproductive and respectful conversations, you may see comments from our Community Managers.
Sign up to post
Sort by
Show More Comments
推荐阅读
薪水高又适合女生的職業
薪水高又适合女生的職業
薪水高又适合女生的職業?現實的職場中,大部分女生在選擇工作時,要是工作與專業不對口,除了找一份銷售類型的工作外,根本不會有跨行的機會;尤其是技術崗位的銷售人員,要是沒有專業知識和邏輯頭腦,找一份适合自己的工作,真的是太難了;其實,女生在讀大...
2024-11-15
當心年底高發病熬夜加班眼底爆漿
當心年底高發病熬夜加班眼底爆漿
臨近過年,很多朋友為了沖業績,完成KPI,常常熬夜加班,有些朋友通宵趕工後不幸“中獎”,出現了視物模糊的情況,來到醫院眼科檢查才發現,自己不是“中獎”,而是得了中漿。一、什麼是中漿?中漿,全稱中心性漿液性脈絡膜視網膜病變,是一種常見的眼底疾...
2024-11-15
等待外賣的時間盡量長一些吧
等待外賣的時間盡量長一些吧
等待外賣的時間盡量長一些吧?中新網客戶端北京5月22日電(任思雨)從1月23日春節檔影片紛紛撤檔至今,電影院已經關閉了百天有餘,我來為大家科普一下關于等待外賣的時間盡量長一些吧?下面希望有你要的答案,我們一起來看看吧!等待外賣的時間盡量長一...
2024-11-15
職場禮儀幾點的基本常識
職場禮儀幾點的基本常識
職場禮儀幾點的基本常識?介紹與被介紹握手是人與人的身體接觸,能夠給人留下深刻的印象當與某人握手感覺不舒服時,我們常常會聯想到那個人消極的性格特征強有力的握手、眼睛直視對方将會搭起積極交流的舞台女士們請注意:為了避免在介紹時發生誤會,在與人打...
2024-11-15
吳倩喜歡張彬彬嗎
吳倩喜歡張彬彬嗎
吳倩和張彬彬這對高顔值CP,早在還沒有交集的時候,就已經被不少剪輯愛好者拼湊在了一起。後來兩人官宣合作,一起主演了職場愛情劇《三分野》,讓無數網友激動不已,頗有一種美夢成真的喜悅感。如今這部劇即将開播,官方又曝光了張彬彬和吳倩的一組合照,網...
2024-11-15
Copyright 2023-2024 - www.tftnews.com All Rights Reserved