Compare commits

..

No commits in common. "7b07eb048fd3c7c020f389e87ac5fb940a70ffe1" and "6859943be2e703dd6abace279a394c1520279a25" have entirely different histories.

3 changed files with 0 additions and 71 deletions

View File

@ -1,22 +0,0 @@
// 输入一个整数,输出它的所有因数。
// 例如:输入 12输出 1 2 3 4 6 12
#include <iostream>
using namespace std;
int main()
{
int n;
cout << "请输入一个整数:";
cin >> n;
int i = 1;
while (i <= n)
{
if (n % i == 0)
cout << i << "\t";
i++;
}
return 0;
}

View File

@ -1,22 +0,0 @@
// 输入一个整数,输出它的阶乘。
// 例如输入5输出120
#include <iostream>
using namespace std;
int main()
{
int n;
int sum = 1;
cout << "请输入一个整数:";
cin >> n;
while (n)
{
sum *= n;
--n;
}
cout << sum << endl;
return 0;
}

View File

@ -1,27 +0,0 @@
// 输入一个整数,输出它的斐波那契数列。
// 例如输入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;
cout << a << "\t" << b << "\t";
while (c <= n)
{
c = a + b;
if (c <= n)
cout << c << "\t";
a = b;
b = c;
}
return 0;
}