請用C++11 array撰寫存費式數列的C++練習
Java版
herrDeng網內搜尋
自訂搜尋
Ads
訂閱:
張貼留言 (Atom)
熱門文章
-
url="https://www.twse.com.tw/exchangeReport/STOCK_DAY?response=json&date=20220330&stockNo=2330"
-
連續複利
-
py3 cpp Line sweep解Leetcode 3346 Maximum Frequency of an Element After Performing Operations I 使用 line sweep不用排序,可得線性解 [Py3解請進]
-
請用Random產生20個0~99的奇數(可重複),然後排序
-
C++ py3 C Rust adjacent difference與loop速解Leetcode 1526 Minimum Number of Increments on Subarrays to Form a Target Array [Py3一行解請進]
-
輸入公元n年,輸出"平年" "閏年"
-
int a[]={21, 23, 57, 13 ,17, 6}; float average; average=?
42 則留言:
#include <iostream>
#include <cstdlib>
#include <array>
using namespace std;
int main()
{
array<int, 40>x;
x[0] = x[1] = 1;
for (int i = 2; i < 40; i++)
{
x[i] = x[i - 1] + x[i - 2];
cout << i << "---" << x[i]<<endl;
}
system("Pause");
return 0;
}
#include <iostream>
#include <cstdlib>
#include<array>
using namespace std;
int main()
{
array<int,40 >a;
a[0] = a[1] = 1;
for (int i = 2; i < 40; i++)
{
a[i] = a[i - 1] + a[i - 2];
cout << i << ">>>>>>>>>>>>>" << a[i] << endl;
}system("Pause");
return 0;
}
#include
#include
#include
using namespace std;
int main()
{
arrayx;
x[0] = x[1] = 1;
for (int i = 2; i < 40; i++)
{
x[i] = x[i - 1] + x[i - 2];
cout << i << "---" << x[i] << endl;
}
system("Pause");
return 0;
}
#include<iostream>
#include<cstdlib>
#include<array>
using namespace std;
int main()
{
array<int, 40>x;
x[0] = x[1] = 1;
for (int i = 2; i < 40; i++)
{
x[i] = x[i - 1] + x[i - 2];
cout << i << "---" << x[i] << endl;
}
system("pause");
return 0;
}
#include
#include
#include
using namespace std;
int main()
{
arraya;
a[0] = a[1] = 1;
for (int i = 2; i < 40; i++)
{
a[i] = a[i - 1] + a[i - 2];
cout << i << ">>>>>>>>>>>>>" << a[i] << endl;
}system("Pause");
return 0;
}
#include
#include
#include
using namespace std;
int main()
{
arraya;
a[0] = a[1] = 1;
for (int i = 2; i < 40; i++)
{
a[i] = a[i - 1] + a[i - 2];
cout << i << ">>>>>>>>>>>>>" << a[i] << endl;
}system("Pause");
return 0;
}
#include
#include
using namespace std;
int main()
{
int a;
int b[45];
b[0] = 0;
b[1] = 1;
for (a = 2; a <= 45; a++)
{
b[a] = b[a - 1] + b[a - 2];
cout << b[a] << endl;
}
system("pause");
}
#include<iostream>
#include<cstdlib>
#include<array>
using namespace std;
int main(){
int x[40];
x[0] = x[1] = 1;
for (int i = 2; i <40; i++){
x[i] = x[i - 1] + x[i - 2];
cout << i << "-->" << x[i]<<"\n";
}
system("pause");
return 0;
}
#include
#include
#include
using namespace std;
int main()
{
int a;
int b[45];
b[0] = 0;
b[1] = 1;
for (a = 2; a <= 45; a++)
{
b[a] = b[a - 1] + b[a - 2];
cout << b[a] << endl;
}
system("pause");
}
#include
#include
#include
using namespace std;
int main()
{
int a;
int b[45];
b[0] = 0;
b[1] = 1;
for (a = 2; a <= 45; a++)
{
b[a] = b[a - 1] + b[a - 2];
cout << b[a] << endl;
}
system("pause");
}
#include
#include
#include
using namespace std;
int main()
{
int a;
int b[45];
b[0] = 0;
b[1] = 1;
for (a = 2; a <= 45; a++)
{
b[a] = b[a - 1] + b[a - 2];
cout << b[a] << endl;
}
system("pause");
}
#include
#include
#include
using namespace std;
int main()
{
int a;
int b[45];
b[0] = 0;
b[1] = 1;
for (a = 2; a <= 45; a++)
{
b[a] = b[a - 1] + b[a - 2];
cout << b[a] << endl;
}
system("pause");
}
#include
#include
#include
using namespace std;
int main()
{
int a;
int b[45];
b[0] = 0;
b[1] = 1;
for (a = 2; a <= 45; a++)
{
b[a] = b[a - 1] + b[a - 2];
cout << b[a] << endl;
}
system("pause");
}
#include
#include
#include
using namespace std;
int main()
{
int a;
int b[45];
b[0] = 0;
b[1] = 1;
for (a = 2; a <= 45; a++)
{
b[a] = b[a - 1] + b[a - 2];
cout << b[a] << endl;
}
system("pause");
}
#include <iostream>
#include <cstdlib>
#include <array>
using namespace std;
int main()
{
array<int,40> y;
y[0] = y[1] = 1;
for (int i = 2; i < 40; i++)
{
y[i] = y[i - 1] + y[i - 2];
cout << i << "-->" << y[i] << endl;
}
system("Pause");
return 0;
}
#include <iostream>
#include <cstdlib>
using namespace std;
int main(void) {
int x[40];
x[0] = x[1] = 1;
for (int i = 2; i <40; i++){
x[i] = x[i - 1] + x[i -2];
cout << i << "-->" << x[i] << endl;
}
system("pause");
return 0;
}
#include <iostream>
#include <cstdlib>
using namespace std;
int main(void) {
int x[40];
x[0] = x[1] = 1;
for (int i = 2; i <40; i++){
x[i] = x[i - 1] + x[i -2];
cout << i << "-->" << x[i] << endl;
}
system("pause");
return 0;
}
#include <iostream>
#include <cstdlib>
#include <array>
using namespace std;
int main()
{
array<int, 20>x;
x[0] = x[1]=1;
for (int i = 2 ;i <20; i++){
x[i] = x[i-1] + x[i-2];
cout << i << "----->" << x[i] << "\n";
}
system("pause");
return 0;
}
#include <iostream>
#include <cstdlib>
#include <array>
using namespace std;
int main()
{
int a;
int b[45];
b[0] = 0;
b[1] = 1;
for (a = 2; a <= 45; a++)
{
b[a] = b[a - 1] + b[a - 2];
cout << b[a] << endl;
}
system("pause");
}
#include <iosteream>
#include <cstdlib>
#include <array>
using namespace std;
int main()
{
array<int, 40 >a;
a[0] = a[1] = 1;
for (int i = 2; i < 40; i++)
{
a[i] = a[i - 1] + a[i - 2];
cout << i << ">>>>>>>>>>>>>" << a[i] << endl;
}system("Pause");
return 0;
#include <iostream>
#include <cstdlib>
#include <array>
using namespace std;
int main(){
array<_int64, 40>a;
a[0] = a[1] = 1;
for (int b = 2; b <40; b++){
a[b] = a[b-1] + a[b-2];
cout << b << "---->" << a[b] << endl;
}
system("pause");
return 0;
}
#include <iostream>
#include <cstdlib>
#include <array>
using namespace std;
int main()
{
int a;
int b[45];
b[0]=0;
b[1]=1;
for(a=2;a<=45;a++)
{
b[a]=b[a-1]+b[a-2];
cout<<b[a]<<endl;
}
system("pause");
}
#include <iostream>
#include <cstdlib>
#include <array>
using namespace std;
int main()
{
int a;
int b[45];
b[0] = 0;
b[1] = 1;
for (a = 2; a <= 45; a++)
{
b[a] = b[a - 1] + b[a - 2];
cout << b[a] << endl;
}
system("pause");
}
#include <iostream>
#include <cstdlib>
#include <array>
using namespace std;
int main()
{
int a;
int b[45];
b[0] = 0;
b[1] = 1;
for (a = 2; a <= 45; a++)
{
b[a] = b[a - 1] + b[a - 2];
cout << b[a] << endl;
}
system("pause");
}
#include <iostream>
#include <cstdlib>
#include <array>
using namespace std;
int main()
{
int a;
int b[45];
b[0] = 0;
b[1] = 1;
for (a = 2; a <= 45; a++)
{
b[a] = b[a - 1] + b[a - 2];
cout << b[a] << endl;
}
system("pause");
}
#include <iostream>
#include <cstdlib>
#include <array>
using namespace std;
int main()
{
int a;
int b[45];
b[0] = 0;
b[1] = 1;
for (a = 2; a <= 45; a++)
{
b[a] = b[a - 1] + b[a - 2];
cout << b[a] << endl;
}
system("pause");
}
#include <iostream>
#include <cstdlib>
#include <array>
using namespace std;
int main()
{
int a;
int b[45];
b[0] = 0;
b[1] = 1;
for (a = 2; a <= 45; a++)
{
b[a] = b[a - 1] + b[a - 2];
cout << b[a] << endl;
}
system("pause");
}
#include <iostream>
#include <cstdlib>
#include <array>
using namespace std;
int main()
{
int a;
int b[45];
b[0] = 0;
b[1] = 1;
for (a = 2; a <= 45; a++)
{
b[a] = b[a - 1] + b[a - 2];
cout << b[a] << endl;
}
system("pause");
}
#include <iostream>
#include <cstdlib>
#include <array>
using namespace std;
int main()
{
array < long long, 40>x;
x[0] = x[1] = 1;
for (int i = 2; i < 40; i++)
{
x[i] = x[i - 1] + x[i - 2];
cout << i << "-->" << x[i] << "\n";
}
system("Pause");
return 0;
}
#include <iosteream>
#include <cstdlib>
#include <array>
using namespace std;
int main()
{
array< long long, 100> x;
x[0] = x[1] = 1;
for (int i = 2; i < 100; i++)
{
x[i] = x[i - i] + x[i - 2];
cout << i << "--->" << x[i] << "\n";
}
system("pause");
return 0;
}
#include <iostream>
#include <cstdlib>
#include <array>
using namespace std;
int main()
{
array< _int64, 100>x;
x[0] = x[1] = 1;
for (int i = 2; i < 100; i++)
{
x[i] = x[i - 1] + x[i - 2];
cout << i << "--->" << x[i] << "\n";
}
system("pause");
return 0;
}
#include <iosteream>
#include <cstdlib>
#include <array>
using namespace std;
int main()
{
array<int, 40 >a;
a[0] = a[1] = 1;
for (int i = 2; i < 40; i++)
{
a[i] = a[i - 1] + a[i - 2];
cout << i << ">>>>>>>>>>>>>" << a[i] << endl;
}system("Pause");
return 0;
#include <iosteream>
#include <cstdlib>
#include <array>
using namespace std;
int main()
{
array< long long, 100> x;
x[0] = x[1] = 1;
for (int i = 2; i < 100; i++)
{
x[i] = x[i - i] + x[i - 2];
cout << i << "--->" << x[i] << "\n";
}
system("pause");
return 0;
}
#include <iostream>
#include <cstdlib>
#include <array>
using namespace std;
int main(){
array<int,40>x;
x[0]=x[1]=1;
for(int i=2;i<40;i++){
x[i]=x[i-1]+x[i-2];
cout<<i<<"-->"<<x[i]<<"\n";
}
}
#include <iostream>
#include <cstdlib>
#include <array>
using namespace std;
int main()
{
int a;
int b[45];
b[0]=0;
b[1]=1;
for(a=2;a<=45;a++)
{
b[a]=b[a-1]+b[a-2];
cout<<b[a]<<endl;
}
system("pause");
}
#include <iostream>
#include <cstdlib>
#include <array>
using namespace std;
int main()
{
int a;
int b[45];
b[0] = 0;
b[1] = 1;
for (a = 2; a <= 45; a++)
{
b[a] = b[a - 1] + b[a - 2];
cout << b[a] << endl;
}
system("pause");
}
#include <iostream>
#include <cstdlib>
#include <array>
using namespace std;
int main()
{
int a;
int b[45];
b[0] = 0;
b[1] = 1;
for (a = 2; a <= 45; a++)
{
b[a] = b[a - 1] + b[a - 2];
cout << b[a] << endl;
}
system("pause");
}
#include <iostream>
#include <cstdlib>
#include <array>
using namespace std;
int main()
{
array<_int64, 100>x;
x[0] = x[1] = 1;
for (int i = 2; i < 100; i++)
{
x[i] = x[i - 1] + x[i - 2];
cout << i << "-->" << x[i] << "\n";
}
system("pause");
return 0;
}
#include <iostream>
#include <cstdlib>
#include <array>
using namespace std;
int main()
{
array <_int64, 100>x;
x[0] = x[1] = 1;
for (int i = 2; i < 100; i++)
{
x[i] = x[i - 1] + x[i - 2];
cout << i << "--->" << x[i] << "\n";
}
system("Pause");
return 0;
}
#include
#include
using namespace std;
int main()
{
int a;
int b[45];
b[0] = 0;
b[1] = 1;
for (a = 2; a <= 45; a++)
{
b[a] = b[a - 1] + b[a - 2];
cout << b[a] << endl;
}
system("pause");
}
#include
#include
using namespace std;
int main()
{
int a;
int b[45];
b[0] = 0;
b[1] = 1;
for (a = 2; a <= 45; a++)
{
b[a] = b[a - 1] + b[a - 2];
cout << b[a] << endl;
}
system("pause");
}
#include
#include
#include
using namespace std;
int main()
{
arrayx;
x[0] = x[1] = 1;
for (int i = 2; i < 40; i++)
{
x[i] = x[i - 1] + x[i - 2];
cout << i << "---" << x[i]<<endl;
}
system("Pause");
return 0;
}
張貼留言