2011-02-01から1ヶ月間の記事一覧
if, switch, 三項演算子を使わず,更に剰余演算子も使わないでやる FizzBuzz. #include <iostream> using namespace std; //0 : number, 1 : Fizz, 2 : Buzz, 3 : FizzBuzz int function_index_table[15] = {0, 0, 1, 0, 2, 1, 0, 0, 1, 2, 0, 1, 0, 0, 3}; int next_</iostream>…