qfedu-basic-level/day7/homework/oh3.cpp

32 lines
510 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 输入一个整数,输出它的斐波那契数列。
// 例如输入10输出1 1 2 3 5 8
#include <iostream>
using namespace std;
int main()
{
int n;
cout << "请输入一个整数:";
cin >> n;
int a = 1;
int b = 1;
int c = 0;
if (n >= 1)
cout << a << "\t";
if (n >= 2)
cout << b << "\t";
while (n > 2 && c <= n)
{
c = a + b;
if (c <= n)
cout << c << "\t";
a = b;
b = c;
}
return 0;
}