#include <stdio.h>
int main(void)
{
long f0=0, f1=1,n,temp,limit;
printf("Enter the limit number:");
scanf("%i",&limit);
printf("the fibonnacci number are:\n");
printf("1\n");
for (n=2;n<=limit;++n) {
temp=f1;
f1+=f0;
f0=temp;
printf("%i\n",f1);
}
return 0;
}
Subscribe to:
Post Comments
(
Atom
)
Popular Posts
-
I am using the manga WORKING. This is the output of this project For this tutorial you need to know : - HTML - CSS - Javasci...
-
Here is the output of our simple calculator: Here's the code: Dim a, b, r As Integer Dim opr As String Private Sub add_Click(...
-
Adding social icons on your site it's so easy just follow this steps. Step 1: You can customize or select your own social icons any d...
-
This is our Web 2 project an online shop when I was a third year college student. Using PHP/HTML, CSS and using mySQL/Xampp as a database. ...
-
The <iframe> tag specifies an inline frame. An iframe is used to display a web page within a web page. Syntax for adding an ifram...
-
Cloud computing is the use of computing resources (hardware and software) that are delivered as a service over a network (typically the Inte...
-
#include <stdio.h> int main(void) { long f0=0, f1=1,n,temp,limit; printf("Enter the limit number:"); scanf("%i",...
-
This is our class work, the problem is to add even numbers from 1-20 using methods. WITH RETURN TYPE WITH PARAMETER package gene1; imp...
-
Problem: Write a Java Program that calculates and prints the diameter, circumference, or the area of a circle given the radius. The applica...
-
Problem: Create a Java Program that uses Control Statements (must use switch-case statement and ladderized if-else ) that presents a menu of...
Blog Archive
-
▼
2012
(
12
)
-
▼
August
(
12
)
- Simple Calculator Program using Microsoft Visual B...
- How to Add Social Icons on Blogger
- Color Program
- ATM System
- What is Cloud Computing?
- Fibonacci Method Turbo C
- How to Add Scroll bar when posting codes on Blogger
- Adding even numbers (1-20)
- Adding even numbers from 1-20 applying METHODS
- Diamond (Nested for-loop)
- Circle: Diameter,Circumference,Area
- Food Menu Program
-
▼
August
(
12
)




0 comments :
Post a Comment