当前位置: 首页 > wzjs >正文

找人建设网站巨量引擎官网

找人建设网站,巨量引擎官网,代理登录网站,导航网站建设1. 编写通常接受一个参数(字符串的地址),并打印该字符串的函数。然而,如果提供了第二个参数(int类型),且该参数不为0,则该函数打印字符串的次数将为该函数被调用的次数(注…

1. 编写通常接受一个参数(字符串的地址),并打印该字符串的函数。然而,如果提供了第二个参数(int类型),且该参数不为0,则该函数打印字符串的次数将为该函数被调用的次数(注意,字符串的打印次数不等于第二个参数的值,而等于函数被调用的次数)。是的,这是一个非常可笑的函数,但它让您能够使用本章介绍的一些技术。在一个简单的程序中使用该函数,以演示该函数是如何工作的。

代码如下: 

#include <iostream> 
using namespace std;
void print(const char *, int k = 1);
int main(){print("I'm the best!");print("I'm the best!", 5);print("I'm the best!");print("I'm the best!");return 0;
}
void print(const char *str, int n){cout << str << endl;
}

输出如下:

2. CandyBar结构包含3个成员,第一个成员存储candy bar的品牌名称;第二个成员存储candy bar的重量(可能有小数);第三个成员存储candy bar的热量(整数)。请编写一个程序,它使用一个这样的函数,即将CandyBar的引用、char指针、double和int作为参数,并用最后3个值设置相应的结构成员。最后3个参数的默认值分别为“Millennium Munch”、2.85和350。另外,该程序还包含一个以CandyBar的引用为参数,并显示结构内容的函数。请尽可能使用const。 

代码如下:

#include <iostream>
#include <string>
using namespace std;struct CandyBar{char *brand;double weight;int heat;
};void getInfo(CandyBar &, char *br = "Millennium Munch", double w = 2.85, int h = 350);
void showInfo(const CandyBar &);int main(){CandyBar cb;getInfo(cb, "MJJ", 3.55, 120);showInfo(cb);return 0;
}
void getInfo(CandyBar &cb, char *br, double w, int h){cb.brand = br;cb.weight = w;cb.heat = h;
}
void showInfo(const CandyBar &cb){cout << "The brand is:" << cb.brand << endl;cout << "The weight is:" << cb.weight << endl;cout << "The heat is:" << cb.heat << endl;
}

输出如下:

 3. 编写一个函数,它接受一个指向string对象的引用作为参数,并将该string对象的内容转化成大写,为此可以使用表6.4描述的函数toupper()。然后编写一个程序,它通过使用一个循环让您能够用不同的输入来测试这个函数,该程序的运行如下:

Enter a string (q to quit):go away
GO AWAY
Enter a string (q to quit):good grief!
GOOD GRIEF!
Enter a string (q to quit):q
Bye.

代码如下: 

#include <iostream>
#include <string>
#include <cctype>using namespace std;void toupper(string &);
int main(){string s;cout << "Enter a string (q to quit):";while(getline(cin, s) && s != "q"){toupper(s);cout << s << endl;cout << "Enter a string (q to quit):";}cout << "Bye.";return 0;
}
void toupper(string &str){for(int i = 0; str[i] != '\0'; i++){if(islower(str[i])){str[i] -= 32;//str[i] = toupper(str[i]);}else{continue;}}
}

 输出如下:

 

4.下面是一个程序框架:

#include<iostream>
#include<cstring>
using namespace std;struct stringy{char * str;int ct;
};int main()
{stringy beany;char testing[] = "Reality isn't what it used to be.";set(beany, testing);show(beany);show(beany, 2);testing[0] = 'D';testing[1] = 'u';show(testing);show(testing, 3);show("Done!");return 0;
}

请提供其中描述的函数和原型,从而完成该程序。注意,应有两个show()函数,每个都使用默认参数。请尽可能使用const参数。set()使用new分配足够的空间来存储指定的字符串。这里使用的技术与设计和实现类时使用的相似。(可能还必须修改头文件的名称,删除using编译指令,这取决于所用的编译器)。

代码如下:

#include<iostream>
#include<string>
using namespace std;struct stringy{char * str;int ct;
};void set(string &, const char *);
void show(string , int n = 1);
void show(const char *, int n = 1);
int main()
{string beany;char testing[] = "Reality isn't what it used to be.";set(beany, testing);show(beany);show(beany, 2);testing[0] = 'D';testing[1] = 'u';show(testing);show(testing, 3);show("Done!");return 0;
}
void set(string &s, const char *c){s = c;
}
void show(string s, int n){for(int i = 0; i < n; i++){cout << s << endl;}
}
void show(const char *c, int n){while(*c != '\0'){cout << *c;c++;}cout << endl;
}

输出如下:

5.编写模板函数max5(),它将一个包含5个T类型元素的数组作为参数,并返回数组中最大的元素(由于长度固定,因此可以在循环中使用硬编码,而不必通过参数来传递)。在一个程序使用该函数,将T替换为一个包含5个int值的数组和一个包含5个double值的数组,以测试该函数。 

#include <iostream>template <class T>
T max(T[]);int main(){using namespace std;int arr1[5] = {1, 2, 3, 4, 5};double arr2[5] = {1.1, 2.2, 3.3, 4.4, 5.5};int max1 = max(arr1);double max2 = max(arr2);cout << "The max number in arr1 is:" << max1 << endl;cout << "The max number in arr2 is:" << max2 << endl;return 0;
}template <class T>
T max(T arr[]){T max = arr[0];for(int i = 1; i < 5; i++){if(max < arr[i]){max = arr[i];} }return max;
}

6.编写模板函数maxn(),他将由一个T类型元素组成的数组和一个表示数组元素数目的整数作为参数,并返回数组中最大的元素。在程序对它进行测试,该程序使用一个包含6个int元素的数组和一个包含4个都不了元素的数组来调用该函数。程序还包含一个具体化,他将char指针数组和数组中的指针数量作为参数,并返回最长的字符串的地址。如果有多个这样的字符串,则返回其中第一个字符串的地址。使用由5个字符串指针组成的数组来测试该具体化。

代码如下:

#include <iostream>
#include <cstring>template <typename T>
T maxn(T* arr, int n){T max = arr[0];for(int i = 1; i < n; i++){if(max < arr[i]){max = arr[i];} }return max;
}
template <>
const char* maxn(const char* arr[5], int n){int max = strlen(arr[0]);int index = 0;for(int i = 1; i < n; i++){if(max < strlen(arr[i])){max = strlen(arr[i]);index = i;} }return arr[index];
}int main(){using namespace std;int arr1[6] = {1, 2, 3, 4, 5, 6};double arr2[4] = {1.1, 1.2, 2.3, 4.5};const char *arr3[5] = {"abc", "aabbcc", "adsafdfgd", "dsggr", "a"};int max1 = maxn(arr1, 6);double max2 = maxn(arr2, 4);const char* max3 = maxn(arr3, 5);cout << "The max in arr1:" << max1 << endl;cout << "The max in arr2:" << max2 << endl;cout << "The max in arr3:" << max3 << endl;return 0;
}

输出如下:

7.修改程序清单8.14,使其使用两个名为SumArray()的模板函数来返回数组元素的总和,而不是显示数组的内容。程序应显示thing的总和以及所有debt的总和。

程序清单8.14如下:

/******************程序清单8.14******************/
// tempover.cpp --- template overloading
#include <iostream>template <typename T>            // template A
void ShowArray(T arr[], int n);template <typename T>            // template B
void ShowArray(T * arr[], int n);struct debts
{char name[50];double amount;
};int main()
{using namespace std;int things[6] = {13, 31, 103, 301, 310, 130};struct debts mr_E[3] ={{"Ima Wolfe", 2400.0},{"Ura Foxe", 1300.0},{"Iby Stout", 1800.0}};double * pd[3]; // set pointers to the amount members of the structures in mr_Efor (int i = 0; i < 3; i++)pd[i] = &mr_E[i].amount;cout << "Listing Mr. E's counts of things:\n";
// things is an array of intShowArray(things, 6);  // uses template Acout << "Listing Mr. E's debts:\n";
// pd is an array of pointers to doubleShowArray(pd, 3);      // uses template B (more specialized)// cin.get();return 0;
}template <typename T>
void ShowArray(T arr[], int n)
{using namespace std;cout << "template A\n";for (int i = 0; i < n; i++)cout << arr[i] << ' ';cout << endl;
}template <typename T>
void ShowArray(T * arr[], int n)
{using namespace std;cout << "template B\n";for (int i = 0; i < n; i++)cout << *arr[i] << ' ';cout << endl; 
}

代码如下: 

#include <iostream>template <typename T>
T SumArray(T arr[], int n);template <typename T>
T SumArray(T* arr[], int n);struct debts
{char name[50];double amount;
};int main()
{using namespace std;int things[6] = {13, 31, 103, 301, 310, 130};struct debts mr_E[3] ={{"Ima Wolfe", 2400.0},{"Ura Foxe", 1300.0},{"Iby Stout", 1800.0}};double * pd[3]; for (int i = 0; i < 3; i++)pd[i] = &mr_E[i].amount;int sum1 = SumArray(things, 6);cout << "The sum of Mr. E's counts of things:" << sum1 << endl;double sum2 = SumArray(pd, 3);cout << "The sum of Mr. E's debts:" << sum2;return 0;
}template <typename T>      
T SumArray(T arr[], int n){T sum;for(int i = 0; i < n; i++){sum += arr[i];}return sum;
}
template <typename T>         
T SumArray(T* arr[], int n){T sum;for(int i = 0; i < n; i++){sum += *arr[i];}return sum;
}

输出如下:

http://www.dtcms.com/wzjs/281962.html

相关文章:

  • 推荐网站建设服务话术站长之家字体
  • 网站建设方案下载全网营销推广方案
  • 湖南建设网站哈尔滨最新
  • 秦皇岛手机网站制作价格互联网销售是什么意思
  • 石家庄兼职建站产品推广平台排行榜
  • 电脑什么软件可以做动漫视频网站广告联盟平台
  • 哪里可以检测艾滋病荆州seo推广
  • 赤峰最好的网站建设公司百度seo怎么操作
  • 如何分析竞争对手的网站疫情最新情况
  • 沈阳建设工程管理中心自己怎么优化关键词
  • 中山做外贸网站网络广告一般是怎么收费
  • 多语言网站建设费用外贸营销网站建站
  • 国际著名平面设计作品网站关键词免费优化
  • 怎样做网站卖手机号百度搜索网页
  • 自学java 做网站 多久站长统计ios
  • 雅安网站建设数字营销公司排行榜
  • 网站开发能赚钱吗地推扫码平台
  • 石家庄网站优化推广搜狗搜索网页版
  • 怎么做点击图片跳转网站优化防疫政策
  • 武汉网站建设_网页设计_网站制作_网站建设公司_做企业网站公司网上竞价
  • 长沙seo优化价格百度竞价优化
  • pc网站制作APP上海seo顾问
  • 怎么做电影网站服务器站长工具视频
  • 西安建设银行网站google play官网下载
  • wordpress网站代码优化百度的企业网站
  • 做机电证的网站常州seo第一人
  • 四川移动网站建设站长工具seo综合查询下载
  • 怎样做公司网站营销的主要目的有哪些
  • 上海网站制作官网班级优化大师下载安装app
  • 济南制作网站公司cps广告联盟平台