作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下两个功能。如何更改代码以使其按字母显示?
例如,如果我定义“A”,它只会显示以 A 开头的所有记录。
char* displayRecordContent (CountryRecordType ctryRec)
{
char * output;
output = ctryRec.Country;
return output;
}
// ====================================================================
void showAllRecords ()
{
int i=0;
char * result;
for (i=0; i<NoOfRecordsRead; i++)
{
result = displayRecordContent (globalCountryDataArray [i]);
printf ("(%d) %s\n", i, result);
}
}
输出:
(0) Andorra
(1) United Arab Emirates
(2) Afghanistan
(3) Antigua and Barbuda
(4) Anguilla
(5) Albania
(6) Armenia
(7) Netherlands Antilles
(8) Angola
(9) Antarctica
最佳答案
void showAllRecords (char begin)
{
int i=0, j=0;
char * result;
for (i=0; i<NoOfRecordsRead; i++)
{
result = displayRecordContent (globalCountryDataArray [i]);
if (result[0] == begin) {
printf ("(%d) %s\n", j, result);
j++;
}
}
}
关于c++ - 如何仅按字母列出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11815453/
我是一名优秀的程序员,十分优秀!