herrDeng網內搜尋
自訂搜尋
Ads
訂閱:
張貼留言 (Atom)
熱門文章
-
11!=?
-
借錢500萬,年利18%,每月複利計算,請問連本帶利的金額 5, 10, 15, 20, 25, 30, 35, 40, 45, 50年的金額。並比較公式: A*exp(0.18n) A*(1+0.18/12)^(12*n), n=年數, A=本金 hint: math.h, p...
-
產生50個元素的陣列並排序
-
請輸出如下 * ** *** **** ***** ******
-
請問你所使的電腦,CPU的規格 Cache多大?其他硬體配置...... 另外, "INTEL® XEON PHI™ 處理器 7230F"的大致規格為?
-
寫一個是否上學期成績2/3的程式
-
用 C/C++算上學期加權平均
-
金鑰總數159*10^18 億=10^8 兆=10^12 京=10^16 垓=10^20 秭=10^24 穣=10^28 溝=10^32 澗=10^36 正=10^40 載=10^44 極=10^48 恆河沙=10^52 阿僧祇=10^56 那由...

35 則留言:
#include <iostream>
#include <cstdlib>
#include <string>
#include <fstream>
#include <omp.h>
using namespace std;
long long ff[100];
long long f(long long n)
{
if(ff[n] == 0)
{
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
double s = omp_get_wtime();
cout << f(91) << endl;
cout << omp_get_wtime() - s << "see\n";
system("pause");
return 0;
}
#include <iostream>
#include <cstdlib>
#include <random>
#include<string>
#include<fstream>
using namespace std;
#include<omp.h>
long long ff[100];
long long f(long long n)
{
if (ff[n] == 0)
{
if (n < 2)ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
double s = omp_get_wtime();
cout << f(91) << endl;
cout << omp_get_wtime() - s << "sec\n";
system("pause");
return 0;
}
#include <iostream>
#include <cstdlib>
#include <fstream>
#include <string>
using namespace std;
#include <omp.h>
long long ff[100];
long long f(long long n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
double s = omp_get_wtime();
cout << f(91) << endl;
cout << omp_get_wtime() - s << " sec\n";
system("Pause");
return 0;
}
#include <iostream>
#include <cstdlib>
#include <fstream>
#include <string>
using namespace std;
#include <omp.h>
long long ff[100];
long long f(int n)
{
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
double s = omp_get_wtime();
cout << f(91) << endl;
cout << omp_get_wtime() - s << "sec\n";
system("Pause");
return 0;
}
#include <iostream>
#include <cstdlib>
#include <fstream>
#include <string>
using namespace std;
#include <omp.h>
long long ff[100];
long long f(long long n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
double s = omp_get_wtime();
cout << f(91) << endl;
cout << omp_get_wtime() - s << "sec\n";
system("Pause");
return 0;
}
#include<iostream>
#include<cstdlib>
#include <fstream>
#include<string>
using namespace std;
#include<omp.h>
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main() {
double s = omp_get_wtime();
cout << f(91) << endl;
cout << omp_get_wtime() - s << "sec\n";
system("Pause");
return 0;
}
#include<iostream>
#include<cstdlib>
#include<fstream>
using namespace std;
#include<omp.h>
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2)ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main() {
fstream fout("fout.txt", ios::out);
for (int n=0; n <= 91; n++) {
double s = omp_get_wtime(),t;
cout <<"f"<<n<<"="<< f(n) << endl;
cout << (t=omp_get_wtime() - s) <<"sec\n";
fout << "f" << n << "=" <<f(n)<< endl;
fout << t<< "sec\n";
}
system("PAUSE");
}
#include <iostream>
#include <cstdlib>
#include <fstream>
#include <string>
using namespace std;
#include <omp.h>
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
fstream fout("f_n.txt", ios::out);
for(int n = 0;n <= 91; n++){
double s = omp_get_wtime(),t;
cout << "f("<<n<<")="<<f(n)<<",";
cout << (t=omp_get_wtime() - s) << "sec\n";
fout << "f(" << n << ")=" << f(n) << ",";
fout << t << "sec\n";
}
fout.close();
system("Pause");
return 0;
}
#include <iostream>
#include <cstdlib>
#include <fstream>
#include <string>
using namespace std;
#include <omp.h>
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
fstream fout("f_n.txt", ios::out);
for(int n = 0;n <= 91; n++){
double s = omp_get_wtime(),t;
cout << "f("<<n<<")="<<f(n)<<",";
cout << (t=omp_get_wtime() - s) << "sec\n";
fout << "f(" << n << ")=" << f(n) << ",";
fout << t << "sec\n";
}
fout.close();
system("Pause");
return 0;
}
#include <iostream>
#include <cstdlib>
#include <fstream>
#include <string>
using namespace std;
#include <omp.h>
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
fstream fout("f_n.txt", ios::out);
for(int n = 0;n <= 91; n++){
double s = omp_get_wtime(),t;
cout << "f("<<n<<")="<<f(n)<<",";
cout << (t=omp_get_wtime() - s) << "sec\n";
fout << "f(" << n << ")=" << f(n) << ",";
fout << t << "sec\n";
}
fout.close();
system("Pause");
return 0;
}
#include <iostream>
#include <cstdlib>
#include <fstream>
#include <string>
using namespace std;
#include <omp.h>
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
fstream fout("f_n.txt", ios::out);
for(int n = 0;n <= 91; n++){
double s = omp_get_wtime(),t;
cout << "f("<<n<<")="<<f(n)<<",";
cout << (t=omp_get_wtime() - s) << "sec\n";
fout << "f(" << n << ")=" << f(n) << ",";
fout << t << "sec\n";
}
fout.close();
system("Pause");
return 0;
}
#include
#include
#include
#include
using namespace std;
#include
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
fstream fout("f n.txt", ios::out);
for (int n = 0; n <= 91; n++) {
double s = omp_get_wtime(), t;
cout << "f(" << n << ")=" << f(n) << ",
cout << (t = omp_get_wtime()) - s)
fout << "f(" << n << ")=" << f(n)
fout << t << " sec\n";
}
fout.close();
system("pause");
return 0;
}
#include <iostream>
#include <cstdlib>
#include <fstream>
#include <string>
using namespace std;
#include <omp.h>
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
fstream fout("f_n.txt", ios::out);
for(int n = 0;n <= 91; n++){
double s = omp_get_wtime(),t;
cout << "f("<<n<<")="<<f(n)<<",";
cout << (t=omp_get_wtime() - s) << "sec\n";
fout << "f(" << n << ")=" << f(n) << ",";
fout << t << "sec\n";
}
fout.close();
system("Pause");
return 0;
}
#include <iostream>
#include <cstdlib>
#include <fstream>
#include <string>
using namespace std;
#include <omp.h>
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
fstream fout("f_n.txt", ios::out);
for(int n = 0;n <= 91; n++){
double s = omp_get_wtime(),t;
cout << "f("<<n<<")="<<f(n)<<",";
cout << (t=omp_get_wtime() - s) << "sec\n";
fout << "f(" << n << ")=" << f(n) << ",";
fout << t << "sec\n";
}
fout.close();
system("Pause");
return 0;
}
#include<iostream>
#include<cstdlib>
#include<fstream>
#include<string>
using namespace std;
#include<omp.h>
long long ff[100];
long long f(int n) {
if (ff[n] == 0)
{
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
fstream fout("f_n.txt",ios::out);
for (int n = 0; n <= 91; n++) {
double s = omp_get_wtime(),t;
cout << "f("<<n <<")="<< f(n)<< ",";
cout <<(t= omp_get_wtime() - s) << "sec\n";
fout << "f(" << n << ")=" << f(n) << ",";
fout << t << "sec\n";
}
fout.close();
system("Pause");
return 0;
}
#include
#include
#include
#include
using namespace std;
#include
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
fstream fout("f n.txt", ios::out);
for (int n = 0; n <= 91; n++) {
double s = omp_get_wtime(), t;
cout << "f(" << n << ")=" << f(n) << ",
cout << (t = omp_get_wtime()) - s)
fout << "f(" << n << ")=" << f(n)
fout << t << " sec\n";
}
fout.close();
system("pause");
return 0;
}
#include
#include
#include
#include
using namespace std;
#include
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
fstream fout("f n.txt", ios::out);
for (int n = 0; n <= 91; n++) {
double s = omp_get_wtime(), t;
cout << "f(" << n << ")=" << f(n) << ",
cout << (t = omp_get_wtime()) - s)
fout << "f(" << n << ")=" << f(n)
fout << t << " sec\n";
}
fout.close();
system("pause");
return 0;
}
#include<iostream>
#include<cstdlib>
#include<fstream>
#include<string>
using namespace std;
#include<omp.h>
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2)ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
double s = omp_get_wtime();
cout << f(91) << endl;
cout << omp_get_wtime() - s <<"sec\n";
system("pause");
}
#include <iostream>
#include <cstdlib>
#include <fstream>
#include <string>
using namespace std;
#include <omp.h>
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
fstream fout("f_n.txt", ios::out);
for(int n = 0;n <= 91; n++){
double s = omp_get_wtime(),t;
cout << "f("<<n<<")="<<f(n)<<",";
cout << (t=omp_get_wtime() - s) << "sec\n";
fout << "f(" << n << ")=" << f(n) << ",";
fout << t << "sec\n";
}
fout.close();
system("Pause");
return 0;
}
#include<iostream>
#include<cstdlib>
#include<fstream>
#include<string>
using namespace std;
#include<omp.h>
long long ff[100];
int f(int n) {
if (ff[n] == 0) {
if (n<2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main() {
fstream fout("f_n.txt", ios::app);
for (int n = 0; n <= 91; n++) {
double s = omp_get_wtime(), t;
cout << f(92) << endl;
cout << omp_get_wtime() - s << "sec\n";
fout << 'f(' << n << ")=" << f(n) << ",";
fout << t << "sec\n";
}
fout.close();
system("pause");
return 0;
}
#include
#include
#include
#include
using namespace std;
#include
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
fstream fout("f n.txt", ios::out);
for (int n = 0; n <= 91; n++) {
double s = omp_get_wtime(), t;
cout << "f(" << n << ")=" << f(n) << ",
cout << (t = omp_get_wtime()) - s)
fout << "f(" << n << ")=" << f(n)
fout << t << " sec\n";
}
fout.close();
system("pause");
return 0;
}
#include <iostream>
#include <cstdlib>
#include <fstream>
#include <string>
using namespace std;
#include<omp.h>
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main() {
fstream fout("f_n.txt", ios::app);
for (int n = 0; n <= 91; n++) {
double s = omp_get_wtime(), t;
cout << f(91) << endl;
cout << omp_get_wtime() - s << "sec\n";
fout << "f(" << n << ")=" << f(n) << ",";
fout << t << "sec\n";
}
fout.close();
system("pause");
return 0;
}
#include
#include
#include
using namespace std;
int main()
{
cout << "hello\n";
fstream fout;
fout.open("hello.csv", ios::out);
fout << "hello\n";
fout.close();
system("Pause");
return 0;
}
#include
#include
#include
#include
using namespace std;
#include
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
fstream fout("f n.txt", ios::out);
for (int n = 0; n <= 91; n++) {
double s = omp_get_wtime(), t;
cout << "f(" << n << ")=" << f(n) << ",
cout << (t = omp_get_wtime()) - s)
fout << "f(" << n << ")=" << f(n)
fout << t << " sec\n";
}
fout.close();
system("pause");
return 0;
}
#include
#include
#include
#include
using namespace std;
#include
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
fstream fout("f n.txt", ios::out);
for (int n = 0; n <= 91; n++) {
double s = omp_get_wtime(), t;
cout << "f(" << n << ")=" << f(n) << ",
cout << (t = omp_get_wtime()) - s)
fout << "f(" << n << ")=" << f(n)
fout << t << " sec\n";
}
fout.close();
system("pause");
return 0;
}
#include
#include
#include
#include
using namespace std;
#include
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
fstream fout("f n.txt", ios::out);
for (int n = 0; n <= 91; n++) {
double s = omp_get_wtime(), t;
cout << "f(" << n << ")=" << f(n) << ",
cout << (t = omp_get_wtime()) - s)
fout << "f(" << n << ")=" << f(n)
fout << t << " sec\n";
}
fout.close();
system("pause");
return 0;
}
#include
#include
#include
#include
using namespace std;
#include
long ff[100];
long f(int n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
fstream fout("f_n.txt", ios::out);
for (int n = 0; n <= 91; n++) {
double s = omp_get_wtime(), t;
cout << "f(" << n << ")=" << f(n) << ",";
cout << (t = omp_get_wtime() - s) << " sec\n";
fout << "f(" << n << ")=" << f(n) << ",";
fout << t << " sec\n";
}
fout.close();
system("Pause");
return 0;
}
#include
#include
#include
#include
using namespace std;
#include
long long ff[100];
long long f(int n) {
if (ff[n] == 0)
{
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
fstream fout("f_n.txt", ios::out);
for (int n = 0; n <= 91; n++) {
double s = omp_get_wtime(), t;
cout << "f(" << n << ")=" << f(n) << ",";
cout << (t = omp_get_wtime() - s) << "sec\n";
fout << "f(" << n << ")=" << f(n) << ",";
fout << t << "sec\n";
}
fout.close();
system("Pause");
return 0;
}
#include
#include
#include
#include
using namespace std;
#include
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
fstream fout("f__n.txt", ios::out);
for (int n = 0; n <= 91; n++) {
double s = omp__get__wtime(), t;
cout << (t = omp__get__wtime() - s) << "sec\n";
fout << t << "sec\n";
}
fout.close();
system("pause");
return 0;
}
#include <iostream>
#include<ctdlib>
#include<fstream>
#include<string>
using namespace std;
#include <omp.h>
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
fstream fout("f__n.txt", ios::out);
for (int n = 0; n <= 91; n++) {
double s = omp__get__wtime(), t;
cout << (t = omp__get__wtime() - s) << "sec\n";
fout << t << "sec\n";
}
fout.close();
system("pause");
return 0;
}
#include
#include
#include
#include
using namespace std;
#include
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
fstream fout("f_n.txt", ios::out);
for (int n = 0; n <= 91; n++) {
double s = omp_get_wtime(), t;
cout << "f(" << n << ")=" << f(n) << ",";
cout << (t = omp_get_wtime() - s) << "sec\n";
fout << "f(" << n << ")=" << f(n) << ",";
fout << t << "sec\n";
}
fout.close();
system("Pause");
return 0;
}
#include
#include
#include
#include
#include
using namespace std;
long long ff[100];
long long f(long long n)
{
if(ff[n] == 0)
{
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
double s = omp_get_wtime();
cout << f(91) << endl;
cout << omp_get_wtime() - s << "see\n";
system("pause");
return 0;
}
#include
#include
#include
#include
#include
using namespace std;
long long ff[100];
long long f(long long n)
{
if(ff[n] == 0)
{
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
double s = omp_get_wtime();
cout << f(91) << endl;
cout << omp_get_wtime() - s << "see\n";
system("pause");
return 0;
}
#include
#include
#include
#include
using namespace std;
#include
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
fstream fout("f_n.txt", ios::out);
for(int n = 0;n <= 91; n++){
double s = omp_get_wtime(),t;
cout << "f("<<n<<")="<<f(n)<<",";
cout << (t=omp_get_wtime() - s) << "sec\n";
fout << "f(" << n << ")=" << f(n) << ",";
fout << t << "sec\n";
}
fout.close();
system("Pause");
return 0;
}
#include
#include
#include
#include
using namespace std;
#include
long long ff[100];
long long f(int n) {
if (ff[n] == 0) {
if (n < 2) ff[n] = 1;
else ff[n] = f(n - 2) + f(n - 1);
return ff[n];
}
else return ff[n];
}
int main()
{
fstream fout("f_n.txt", ios::out);
for(int n = 0;n <= 91; n++){
double s = omp_get_wtime(),t;
cout << "f("<<n<<")="<<f(n)<<",";
cout << (t=omp_get_wtime() - s) << "sec\n";
fout << "f(" << n << ")=" << f(n) << ",";
fout << t << "sec\n";
}
fout.close();
system("Pause");
return 0;
}
張貼留言