巧用数组减少if语句
2008-02-23 05:29:35来源:互联网 阅读 ()
假设我们要写一个判断用户输入整数奇偶性的程式,能够用以下代码实现:
long num;
cin >> num;
if ( num % 2L ) {
cout << "Odd!\n";
} else {
cout << "Even!\n";
}
但是这个 if 判断是没必要的,我们能够利用数组来避免:
const char *msg[] = { "Even", "Odd" };
long num;
cin >> num;
cout << msg[num & 1L] << '\n'; // can also be `num % 2'
这种方法不但对这个程式有效,不少别的应用也能够使用这个方法来减少 if 语句。这个方法也能够用于 C 程式。以下是奇偶判断程式完整代码:
/*
* FileName: odd_or_even.cpp
* Author: Antigloss at http://stdcpp.cn
* LastModifiedDate: 2005-7-22 22:30
* Purpose: Tell if a given number is odd or even
*/
#include <cstdlib> // for EXIT_SUCCESS
#include <iostream>
#include <limits> // for numeric_limits
// flush the input buffer
inline void flush_stdin()
{
std::cin.clear(); // clear error state of the stream
// clear data left at the input buffer
std::cin.ignore( std::numeric_limits< std::streamsize >::max(), '\n' );
} // end of flush_stdin
int main()
{
long num;
const char *msg[] = { "Even", "Odd" };
for (;;) {
std::cout << "Please input an integer(q to end): ";
if ( std::cin >> num ) {
std::cout << msg[num & 1L] << '\n'; // we can also use `num % 2L'
} else {
std::cin.clear(); // clear error state before reading from the input stream
if ( std::cin.get() == 'q' ) {
flush_stdin();
break;
}
std::cerr << "You should input an INTEGER!\n";
}
flush_stdin();
}
std::cout << "Thanks for using our product!\nPress ENTER to quit...";
std::cin.get();
return EXIT_SUCCESS;
}
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
下一篇: 产生随机数的方法
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash