标题:上学第一个星期的测验题 : 错在哪里
只看楼主
kaneqeqeq
Rank: 1
等 级:新手上路
帖 子:59
专家分:0
注 册:2007-7-3
 问题点数:0 回复次数:0 
上学第一个星期的测验题 : 错在哪里

#include <iostream>

// Prototypes
void DisplayMenu();
int GetSelection();

////////////////////////////////////////
// The main() function.
////////////////////////////////////////
int main()
{
// Display the menu.
DisplayMenu();

// Get the menu selection.
int selection;
selection = GetSelection();

// Select the matching process
switch (selection)
{
case 1:
std::cout << "Processing Receivables" << std::endl;
break;
case 2:
std::cout << "Processing Payables" << std::endl;
break;
case 3:
std::cout << "Quitting" << std::endl;
break;
default:
std::cout << "\aInvalid selection" << std::endl;
break;
}

return 0;
}

////////////////////////////////////////
// Display a menu.
////////////////////////////////////////
void DisplayMenu()
{
std::cout << "--- Menu ---" << endl;
std::cout << "1=Receivables" << endl;
std::cout << "2=Payables" << endl;
std::cout << "3=Quit" << endl;
}

////////////////////////////////////////
// Read a menu selection from the
// keyboard.
////////////////////////////////////////
int GetSelection()
{
int selection;
std::cout << "Enter Selection: ";
std::cin >> selection;

return selection;
}
搜索更多相关主题的帖子: function matching include process 
2007-07-14 19:42



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-155372-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.298973 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved