English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Can Some on help me with a program that displays Fibbonacci series from O upto 60 in Visual C++

2007-04-18 22:07:01 · 3 answers · asked by Sempeho 2 in Computers & Internet Programming & Design

3 answers

either google it or check somewhere withinn yahoo answers. i know that questions been asked

2007-04-18 22:22:27 · answer #1 · answered by John 5 · 0 0

I have been programming business strategies-machines and a line of robots some time past, yet I on no account used C, C++, seen C, in besides. as long as i understand those are languages used to comprehend programmes as an interface between the gadget language (ASCII codes) & the consumer of that specifique gadget (the consumer of the laptop which places in action those robots by using the flexibility of a programme). yet "robots programming" is a lot extra straight forward than realising a particular programme in one in all those language. O.ok. it relies upon on what precisely you are going to be able to preffere to do. And it is lots extra handy to paintings into an place of work than into the production lines the place it is lots extra animation nevertheless, and huge satisfaction by using the end results of the paintings. it is development something which you would be able to touch and have it executed below your own eyes, that's larger than the programme realisation. you may properly be purely a technician or a technological engineer, you purely might desire to understand the approach wherein those robots shall paintings, and you may desire to alter into familiar with some concordance you may desire to take and be attentive to between the machines reference structures and the programe in itself, and it is the main mandatory with the intention to have the programme you have realised interior the right function. Else, the programme is of little need in the adventure that your refference structures are not properly choose on the gadget/robotic. yet you may desire to talk with regard to the realisation of a particular programme to be utilized by using the proccessor of a robotic that's incredibly diverse from "robots programming" in itself.

2016-12-29 09:25:03 · answer #2 · answered by ? 3 · 0 0

Here is an answer in C

#include

int main()
{
int i;
int a[50];

a[0]=1;
a[1]=1;
printf("\n\n% d% d",a[0],a[1]);

for (i=2;i<=60;i++) {

a[i]=a[i-1]+a[i-2];
printf("% d",a[i]);

}
getchar();
return 0;
}

2007-04-18 22:57:57 · answer #3 · answered by iyiogrenci 6 · 0 0

fedest.com, questions and answers