まさるblog

越後在住子持ちプログラマー奮闘記 - Author:まさる(高野 将、TAKANO Sho)

目次

Blog 利用状況

ニュース

著書

2010/7発売


Web掲載記事

@IT

.NET開発を始めるVB6プログラマーが知るべき9のこと

CodeZine

実例で学ぶASP.NET Webフォーム業務アプリケーション開発のポイント

第1回 3層データバインドを正しく活用しよう(前編)

ブログパーツ


書庫

日記カテゴリ

コミュニティ

FizzBuzz>それDecoratorパターンで

FizzBuzz>それLINQで>それワンライナーで

FizzBuzz>それyield returnで

の続き。

 

FizzBuzzを「いかに面倒に解くか」みたいになってるので、Decoratorパターンでやってみた。

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
  // FizzBuzzのもと
  public abstract class FizzBuzzBase
  {
    // 中の人
    public FizzBuzzBase FizzBuzz { get; private set; }

    // しゃべる言葉
    public abstract string Word { get; }

    // 中の人をセット
    public FizzBuzzBase(FizzBuzzBase fizzbuzz)
    {
      this.FizzBuzz = fizzbuzz;
    }

    // しゃべれ
    public void Speak()
    {
      Console.WriteLine(Word);

      // 中の人にしゃべらせる
      if (this.FizzBuzz != null)
      {
        this.FizzBuzz.Speak();
      }
    }
  }

  // Fizz
  public class Fizz : FizzBuzzBase
  {
    public Fizz(FizzBuzzBase fizzbuzz)
      : base(fizzbuzz)
    {
    }

    public override string Word
    {
      get { return "Fizz"; }
    }
  }

  // Buzz
  public class Buzz : FizzBuzzBase
  {
    public Buzz(FizzBuzzBase fizzbuzz)
      : base(fizzbuzz)
    {
    }

    public override string Word
    {
      get { return "Buzz"; }
    }
  }

  // FizzBuzz
  public class FizzBuzz : FizzBuzzBase
  {
    public FizzBuzz(FizzBuzzBase fizzbuzz)
      : base(fizzbuzz)
    {
    }

    public override string Word
    {
      get { return "FizzBuzz"; }
    }
  }

  // 数字
  public class Number : FizzBuzzBase
  {
    private int number;

    public Number(int number, FizzBuzzBase fizzbuzz)
      : base(fizzbuzz)
    {
      this.number = number;
    }

    public override string Word
    {
      get { return this.number.ToString(); }
    }
  }

  // メイン
  class Program
  {
    static void Main(string[] args)
    {
      FizzBuzzBase fizzbuzz = null;
      // 1からしゃべらせるため、逆からぶっこむ
      foreach (int i in Enumerable.Range(1, 20).Reverse())
      {
        if (i % 3 == 0 && i % 5 == 0)
        {
          fizzbuzz = new FizzBuzz(fizzbuzz);
        }
        else if (i % 3 == 0)
        {
          fizzbuzz = new Fizz(fizzbuzz);
        }
        else if (i % 5 == 0)
        {
          fizzbuzz = new Buzz(fizzbuzz);
        }
        else
        {
          fizzbuzz = new Number(i, fizzbuzz);
        }
      }

      // しゃべれ
      fizzbuzz.Speak();
    }
  }
}

image

 

うん、上々♪

投稿日時 : 2009年10月12日 8:09

Feedback

# Heya i'm for the first time here. I came across this board and I find It truly useful & it helped me out much. I hope to give something back and aid others like you aided me. 2018/10/05 14:43 Heya i'm for the first time here. I came across th

Heya i'm for the first time here. I came across this board and I find
It truly useful & it helped me out much. I hope to give something back and aid others like you aided
me.

# For hottest information you have to visit world-wide-web and on web I found this website as a finest web site for latest updates. 2018/10/24 22:24 For hottest information you have to visit world-w

For hottest information you have to visit world-wide-web and on web I found this website as a finest web site for latest updates.

# For latest information you have to pay a visit web and on world-wide-web I found this website as a finest site for newest updates. 2018/11/11 2:57 For latest information you have to pay a visit web

For latest information you have to pay a visit web and on world-wide-web
I found this website as a finest site for newest updates.

# I'm gone to tell my little brother, that he should also pay a quick visit this weblog on regular basis to get updated from latest information. 2019/04/21 3:01 I'm gone to tell my little brother, that he should

I'm gone to tell my little brother, that he should also pay a quick visit this weblog on regular basis to
get updated from latest information.

# My partner and I stumbled over here by a different web page and thought I should check things out. I like what I see so now i'm following you. Look forward to finding out about your web page for a second time. 2019/08/20 7:24 My partner and I stumbled over here by a different

My partner and I stumbled over here by a different web page and thought I should check things
out. I like what I see so now i'm following you.
Look forward to finding out about your web page
for a second time.

# My partner and I stumbled over here by a different web page and thought I should check things out. I like what I see so now i'm following you. Look forward to finding out about your web page for a second time. 2019/08/20 7:25 My partner and I stumbled over here by a different

My partner and I stumbled over here by a different web page and thought I should check things
out. I like what I see so now i'm following you.
Look forward to finding out about your web page
for a second time.

# My partner and I stumbled over here by a different web page and thought I should check things out. I like what I see so now i'm following you. Look forward to finding out about your web page for a second time. 2019/08/20 7:26 My partner and I stumbled over here by a different

My partner and I stumbled over here by a different web page and thought I should check things
out. I like what I see so now i'm following you.
Look forward to finding out about your web page
for a second time.

# My partner and I stumbled over here by a different web page and thought I should check things out. I like what I see so now i'm following you. Look forward to finding out about your web page for a second time. 2019/08/20 7:27 My partner and I stumbled over here by a different

My partner and I stumbled over here by a different web page and thought I should check things
out. I like what I see so now i'm following you.
Look forward to finding out about your web page
for a second time.

# I am regular visitor, how are you everybody? This paragraph posted at this web page is really fastidious. 2021/08/23 14:15 I am regular visitor, how are you everybody? This

I am regular visitor, how are you everybody?
This paragraph posted at this web page is really fastidious.

# I am regular visitor, how are you everybody? This paragraph posted at this web page is really fastidious. 2021/08/23 14:16 I am regular visitor, how are you everybody? This

I am regular visitor, how are you everybody?
This paragraph posted at this web page is really fastidious.

# I am regular visitor, how are you everybody? This paragraph posted at this web page is really fastidious. 2021/08/23 14:17 I am regular visitor, how are you everybody? This

I am regular visitor, how are you everybody?
This paragraph posted at this web page is really fastidious.

# I am regular visitor, how are you everybody? This paragraph posted at this web page is really fastidious. 2021/08/23 14:18 I am regular visitor, how are you everybody? This

I am regular visitor, how are you everybody?
This paragraph posted at this web page is really fastidious.

# I enjoy what you guys are usually up too. This type of clever work and coverage! Keep up the superb works guys I've incorporated you guys to blogroll. 2021/08/25 0:30 I enjoy what you guys are usually up too. This typ

I enjoy what you guys are usually up too. This type of clever work and coverage!
Keep up the superb works guys I've incorporated you guys to blogroll.

# I enjoy what you guys are usually up too. This type of clever work and coverage! Keep up the superb works guys I've incorporated you guys to blogroll. 2021/08/25 0:31 I enjoy what you guys are usually up too. This typ

I enjoy what you guys are usually up too. This type of clever work and coverage!
Keep up the superb works guys I've incorporated you guys to blogroll.

# I enjoy what you guys are usually up too. This type of clever work and coverage! Keep up the superb works guys I've incorporated you guys to blogroll. 2021/08/25 0:32 I enjoy what you guys are usually up too. This typ

I enjoy what you guys are usually up too. This type of clever work and coverage!
Keep up the superb works guys I've incorporated you guys to blogroll.

# I enjoy what you guys are usually up too. This type of clever work and coverage! Keep up the superb works guys I've incorporated you guys to blogroll. 2021/08/25 0:33 I enjoy what you guys are usually up too. This typ

I enjoy what you guys are usually up too. This type of clever work and coverage!
Keep up the superb works guys I've incorporated you guys to blogroll.

# Hey there! I could have sworn I've been to this website before but after reading through some of the post I realized it's new to me. Anyways, I'm definitely delighted I found it and I'll be bookmarking and checking back often! 2021/08/26 7:32 Hey there! I could have sworn I've been to this we

Hey there! I could have sworn I've been to this website before but
after reading through some of the post I realized it's
new to me. Anyways, I'm definitely delighted I found it and I'll be bookmarking and checking back often!

# I've been exploring for a bit for any high-quality articles or weblog posts in this kind of house . Exploring in Yahoo I ultimately stumbled upon this site. Reading this information So i'm satisfied to exhibit that I've a very good uncanny feeling I cam 2021/09/02 7:39 I've been exploring for a bit for any high-quality

I've been exploring for a bit for any high-quality articles or weblog posts in this kind of
house . Exploring in Yahoo I ultimately stumbled upon this site.
Reading this information So i'm satisfied to exhibit that
I've a very good uncanny feeling I came upon exactly what I needed.

I so much no doubt will make sure to don?t fail to remember this website and give
it a look on a relentless basis.

# I've been exploring for a bit for any high-quality articles or weblog posts in this kind of house . Exploring in Yahoo I ultimately stumbled upon this site. Reading this information So i'm satisfied to exhibit that I've a very good uncanny feeling I cam 2021/09/02 7:40 I've been exploring for a bit for any high-quality

I've been exploring for a bit for any high-quality articles or weblog posts in this kind of
house . Exploring in Yahoo I ultimately stumbled upon this site.
Reading this information So i'm satisfied to exhibit that
I've a very good uncanny feeling I came upon exactly what I needed.

I so much no doubt will make sure to don?t fail to remember this website and give
it a look on a relentless basis.

# I've been exploring for a bit for any high-quality articles or weblog posts in this kind of house . Exploring in Yahoo I ultimately stumbled upon this site. Reading this information So i'm satisfied to exhibit that I've a very good uncanny feeling I cam 2021/09/02 7:41 I've been exploring for a bit for any high-quality

I've been exploring for a bit for any high-quality articles or weblog posts in this kind of
house . Exploring in Yahoo I ultimately stumbled upon this site.
Reading this information So i'm satisfied to exhibit that
I've a very good uncanny feeling I came upon exactly what I needed.

I so much no doubt will make sure to don?t fail to remember this website and give
it a look on a relentless basis.

# I've been exploring for a bit for any high-quality articles or weblog posts in this kind of house . Exploring in Yahoo I ultimately stumbled upon this site. Reading this information So i'm satisfied to exhibit that I've a very good uncanny feeling I cam 2021/09/02 7:42 I've been exploring for a bit for any high-quality

I've been exploring for a bit for any high-quality articles or weblog posts in this kind of
house . Exploring in Yahoo I ultimately stumbled upon this site.
Reading this information So i'm satisfied to exhibit that
I've a very good uncanny feeling I came upon exactly what I needed.

I so much no doubt will make sure to don?t fail to remember this website and give
it a look on a relentless basis.

# If you want to increase your experience simply keep visiting this website and be updated with the most up-to-date information posted here. 2021/09/04 20:46 If you want to increase your experience simply kee

If you want to increase your experience simply keep visiting this website and be updated with the most up-to-date information posted here.

# If you want to increase your experience simply keep visiting this website and be updated with the most up-to-date information posted here. 2021/09/04 20:47 If you want to increase your experience simply kee

If you want to increase your experience simply keep visiting this website and be updated with the most up-to-date information posted here.

# If you want to increase your experience simply keep visiting this website and be updated with the most up-to-date information posted here. 2021/09/04 20:48 If you want to increase your experience simply kee

If you want to increase your experience simply keep visiting this website and be updated with the most up-to-date information posted here.

# If you want to increase your experience simply keep visiting this website and be updated with the most up-to-date information posted here. 2021/09/04 20:49 If you want to increase your experience simply kee

If you want to increase your experience simply keep visiting this website and be updated with the most up-to-date information posted here.

# It's a shame you don't have a donate button! I'd most certainly donate to this brilliant blog! I suppose for now i'll settle for book-marking and adding your RSS feed to my Google account. I look forward to fresh updates and will share this blog with my 2021/09/11 7:15 It's a shame you don't have a donate button! I'd m

It's a shame you don't have a donate button! I'd most certainly donate to this brilliant blog!

I suppose for now i'll settle for book-marking and adding your RSS feed to my
Google account. I look forward to fresh updates and will share this blog with my Facebook group.
Chat soon! quest bars http://j.mp/3jZgEA2 quest bars

# It's a shame you don't have a donate button! I'd most certainly donate to this brilliant blog! I suppose for now i'll settle for book-marking and adding your RSS feed to my Google account. I look forward to fresh updates and will share this blog with my 2021/09/11 7:16 It's a shame you don't have a donate button! I'd m

It's a shame you don't have a donate button! I'd most certainly donate to this brilliant blog!

I suppose for now i'll settle for book-marking and adding your RSS feed to my
Google account. I look forward to fresh updates and will share this blog with my Facebook group.
Chat soon! quest bars http://j.mp/3jZgEA2 quest bars

# It's a shame you don't have a donate button! I'd most certainly donate to this brilliant blog! I suppose for now i'll settle for book-marking and adding your RSS feed to my Google account. I look forward to fresh updates and will share this blog with my 2021/09/11 7:17 It's a shame you don't have a donate button! I'd m

It's a shame you don't have a donate button! I'd most certainly donate to this brilliant blog!

I suppose for now i'll settle for book-marking and adding your RSS feed to my
Google account. I look forward to fresh updates and will share this blog with my Facebook group.
Chat soon! quest bars http://j.mp/3jZgEA2 quest bars

# It's a shame you don't have a donate button! I'd most certainly donate to this brilliant blog! I suppose for now i'll settle for book-marking and adding your RSS feed to my Google account. I look forward to fresh updates and will share this blog with my 2021/09/11 7:18 It's a shame you don't have a donate button! I'd m

It's a shame you don't have a donate button! I'd most certainly donate to this brilliant blog!

I suppose for now i'll settle for book-marking and adding your RSS feed to my
Google account. I look forward to fresh updates and will share this blog with my Facebook group.
Chat soon! quest bars http://j.mp/3jZgEA2 quest bars

# Thanks for another wonderful article. The place else may anyone get that kind of info in such an ideal means of writing? I've a presentation subsequent week, and I'm on the search for such information. ps4 https://j.mp/3nkdKIi ps4 2021/09/12 17:12 Thanks for another wonderful article. The place e

Thanks for another wonderful article. The place else may anyone get that kind of info
in such an ideal means of writing? I've a presentation subsequent week,
and I'm on the search for such information. ps4 https://j.mp/3nkdKIi ps4

# Thanks for another wonderful article. The place else may anyone get that kind of info in such an ideal means of writing? I've a presentation subsequent week, and I'm on the search for such information. ps4 https://j.mp/3nkdKIi ps4 2021/09/12 17:13 Thanks for another wonderful article. The place e

Thanks for another wonderful article. The place else may anyone get that kind of info
in such an ideal means of writing? I've a presentation subsequent week,
and I'm on the search for such information. ps4 https://j.mp/3nkdKIi ps4

# This is a great tip particularly to those new to the blogosphere. Short but very precise info… Appreciate your sharing this one. A must read article! scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery 2021/09/14 12:25 This is a great tip particularly to those new to t

This is a great tip particularly to those new to the blogosphere.
Short but very precise info… Appreciate your sharing this one.
A must read article! scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# This is a great tip particularly to those new to the blogosphere. Short but very precise info… Appreciate your sharing this one. A must read article! scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery 2021/09/14 12:26 This is a great tip particularly to those new to t

This is a great tip particularly to those new to the blogosphere.
Short but very precise info… Appreciate your sharing this one.
A must read article! scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# This is a great tip particularly to those new to the blogosphere. Short but very precise info… Appreciate your sharing this one. A must read article! scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery 2021/09/14 12:27 This is a great tip particularly to those new to t

This is a great tip particularly to those new to the blogosphere.
Short but very precise info… Appreciate your sharing this one.
A must read article! scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# This is a great tip particularly to those new to the blogosphere. Short but very precise info… Appreciate your sharing this one. A must read article! scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery 2021/09/14 12:28 This is a great tip particularly to those new to t

This is a great tip particularly to those new to the blogosphere.
Short but very precise info… Appreciate your sharing this one.
A must read article! scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# I've read some excellent stuff here. Definitely value bookmarking for revisiting. I wonder how so much attempt you set to create one of these magnificent informative web site. 2021/11/16 1:15 I've read some excellent stuff here. Definitely v

I've read some excellent stuff here. Definitely value bookmarking for revisiting.
I wonder how so much attempt you set to create one of
these magnificent informative web site.

# For hottest news you have to visit web and on web I found this web site as a finest website for most up-to-date updates. 2021/12/13 20:14 For hottest news you have to visit web and on web

For hottest news you have to visit web and on web I found this web site as a finest
website for most up-to-date updates.

# Hello, i think that i noticed you visited my weblog so i came to go back the choose?.I am attempting to to find issues to enhance my web site!I guess its ok to make use of some of your ideas!! 2022/03/24 4:51 Hello, i think that i noticed you visited my weblo

Hello, i think that i noticed you visited my weblog so i came to
go back the choose?.I am attempting to to find issues
to enhance my web site!I guess its ok to make use of some of your ideas!!

# Howdy great website! Does running a blog like this require a great deal of work? I've virtually no expertise in computer programming but I was hoping to start my own blog in the near future. Anyways, if you have any recommendations or techniques for ne 2022/03/24 17:42 Howdy great website! Does running a blog like this

Howdy great website! Does running a blog like this require a great
deal of work? I've virtually no expertise in computer programming but I was
hoping to start my own blog in the near future.

Anyways, if you have any recommendations or techniques for
new blog owners please share. I know this is off topic however I simply needed to ask.
Kudos!

# Howdy great website! Does running a blog like this require a great deal of work? I've virtually no expertise in computer programming but I was hoping to start my own blog in the near future. Anyways, if you have any recommendations or techniques for ne 2022/03/24 17:43 Howdy great website! Does running a blog like this

Howdy great website! Does running a blog like this require a great
deal of work? I've virtually no expertise in computer programming but I was
hoping to start my own blog in the near future.

Anyways, if you have any recommendations or techniques for
new blog owners please share. I know this is off topic however I simply needed to ask.
Kudos!

# Howdy great website! Does running a blog like this require a great deal of work? I've virtually no expertise in computer programming but I was hoping to start my own blog in the near future. Anyways, if you have any recommendations or techniques for ne 2022/03/24 17:44 Howdy great website! Does running a blog like this

Howdy great website! Does running a blog like this require a great
deal of work? I've virtually no expertise in computer programming but I was
hoping to start my own blog in the near future.

Anyways, if you have any recommendations or techniques for
new blog owners please share. I know this is off topic however I simply needed to ask.
Kudos!

# Howdy great website! Does running a blog like this require a great deal of work? I've virtually no expertise in computer programming but I was hoping to start my own blog in the near future. Anyways, if you have any recommendations or techniques for ne 2022/03/24 17:45 Howdy great website! Does running a blog like this

Howdy great website! Does running a blog like this require a great
deal of work? I've virtually no expertise in computer programming but I was
hoping to start my own blog in the near future.

Anyways, if you have any recommendations or techniques for
new blog owners please share. I know this is off topic however I simply needed to ask.
Kudos!

タイトル
名前
Url
コメント