<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:knowledge="http://knowledge.livedoor.com/-/spec/1.0/">
<channel>
<language>ja-jp</language>
<title>livedoor ナレッジ - C・C++・C#</title>
<link>http://knowledge.livedoor.com/category/101006004</link>
<pubDate>Sun, 12 Oct 2008 05:53:51 +0900</pubDate>
<lastBuildDate>Thu, 21 Aug 2008 17:24:12 +0900</lastBuildDate>
<generator>http://knowledge.livedoor.com/</generator>
<description>livedoor knowledge - C・C++・C#</description>
<copyright>Copyright 1996- livedoor Co.,Ltd.</copyright>
<image>
    <title>livedoor knowledge</title>
    <url>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</url>
    <link>http://knowledge.livedoor.com</link>
    <width>43</width>
    <height>43</height>
</image>
<item>
    <title>新たにC++を習得したいのですが、お勧めの良書を教えてください。</title>
    <link>http://knowledge.livedoor.com/35859</link>
    <description>新たにC++を習得したいのですが、お勧めの良書を教えてください。
・Cを触ったことはありません。
・CとC++との違いもいまいち分かりません。
・JavaScriptとVBAとPerlを触ったことはあります。

・それから、Cでは配列名と添え字を逆にしてもいいと聞きましたが本当ですか。</description>
    <pubDate>Thu, 21 Aug 2008 17:24:12 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/35859</guid>
    <author>NIPO.ASIA</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>25022</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/25022</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>1</knowledge:answers>
        <knowledge:closed label="解決済">Sat, 06 Sep 2008 18:36:14 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>C言語独学者です。 どこがどうおかしいのか詳しく教えてください。</title>
    <link>http://knowledge.livedoor.com/35339</link>
    <description>C言語独学者です。
どこがどうおかしいのか詳しく教えてください。
ファイルのデータと配列のデータを比較して、一致するかどうかを確認するし、その結果を表示するプログラムを作成しています。
しかし、ループの中の条件式がおかしい（と思います）ため、一致していても一致していないと出力されてしまいます。
何がどうおかしいのか、詳しく教えてください。
お願いします。

↓今、作成しているプログラムです。↓

#include &amp;lt;stdio.h&amp;gt;

struct test {
	char  no[5];
	char  name[10];
	char  english[5];
	char  math[5];
};

 int main(void)
{
  FILE *fp;
  int  i;
  char f_no[5], f_name[5];
  
struct test data[5] = {
		{&amp;quot;001&amp;quot;,&amp;quot;akemi&amp;quot;,&amp;quot;100&amp;quot;,&amp;quot;40&amp;quot;},
		{&amp;quot;002&amp;quot;,&amp;quot;tadao&amp;quot;,&amp;quot;59&amp;quot;,&amp;quot;76&amp;quot;},
		{&amp;quot;003&amp;quot;,&amp;quot;mika&amp;quot;,&amp;quot;94&amp;quot;,&amp;quot;69&amp;quot;},
		{&amp;quot;004&amp;quot;,&amp;quot;hiroshi&amp;quot;,&amp;quot;54&amp;quot;,&amp;quot;98&amp;quot;},
		{&amp;quot;005&amp;quot;,&amp;quot;kazu&amp;quot;,&amp;quot;39&amp;quot;,&amp;quot;57&amp;quot;}
	};
	
	struct test *test_p;
	test_p = data;
	

	if ((fp = fopen(&amp;quot;test.txt&amp;quot;, &amp;quot;r&amp;quot;)) == NULL) {
		printf(&amp;quot;ファイルが見つかりません。\n&amp;quot;);
	}
		
	else {
		
		while (fscanf(fp, &amp;quot;%s%s&amp;quot;, f_no, f_name) == 2) {

		for(i = 0; i&amp;lt;=5; i++) {
  		if((test_p-&amp;gt;no == f_no) &amp;amp;&amp;amp; (test_p-&amp;gt;name == f_name)) {
   			printf(&amp;quot;%s %s 英語%s 数学%sです。\n&amp;quot;, f_no, f_name, test_p-&amp;gt;english, test_p-&amp;gt;math);
  		}
		
		else {
			printf(&amp;quot;%s %s 一致しません\n&amp;quot;, f_no, f_name);
		break;
		}
		++test_p;
		}
		}
	}
	
	fclose(fp);

}


↓test.txtの中身↓

001 akemi
002 kazuo
003 mika
005 yuri
006 xxx

よろしくお願いします。</description>
    <pubDate>Sun, 20 Jul 2008 16:24:01 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/35339</guid>
    <author>flear</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>27519</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/27519</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>3</knowledge:answers>
        <knowledge:closed label="お蔵入り">Wed, 20 Aug 2008 06:10:07 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>値 n を入力させて、1 から n までの総和を計算し、結果を表示させるプログラムを作成。ただし、入力としては、1～1000000までの数のみを受け付ける。</title>
    <link>http://knowledge.livedoor.com/34011</link>
    <description>値 n を入力させて、1 から n までの総和を計算し、結果を表示させるプログラムを作成。ただし、入力としては、1～1000000までの数のみを受け付ける。
% ./a.out
1 からいくつまでの足し算をしますか？ [1-1000000] 3
1 から 3 まで足した結果は 6 です。

</description>
    <pubDate>Wed, 07 May 2008 10:40:28 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/34011</guid>
    <author>uiftysuftuduyted8yu</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>26391</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/26391</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>3</knowledge:answers>
        <knowledge:closed label="お蔵入り">Sat, 07 Jun 2008 06:10:15 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>値 n を入力させ、1 から n までの総和を計算し、結果を表示させるプログラムです。</title>
    <link>http://knowledge.livedoor.com/33859</link>
    <description>値 n を入力させ、1 から n までの総和を計算し、結果を表示させるプログラムです。
結果
1 からいくつまでの足し算をしますか？  5
1 から 5 まで足した結果は 15 です。
#include &amp;lt;stdio.h&amp;gt;

int main(void);
{
</description>
    <pubDate>Tue, 29 Apr 2008 02:03:41 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/33859</guid>
    <author>uiftysuftuduyted8yu</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>26391</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/26391</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>1</knowledge:answers>
        <knowledge:closed label="お蔵入り">Fri, 30 May 2008 06:10:07 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>~korekon/aren2 ディレクトリにある print.cをコピーすにはどのようなコマンドでやればできますか。 いろいろ試したのですがわかりません。</title>
    <link>http://knowledge.livedoor.com/33748</link>
    <description>~korekon/aren2 ディレクトリにある print.cをコピーすにはどのようなコマンドでやればできますか。
いろいろ試したのですがわかりません。
</description>
    <pubDate>Thu, 24 Apr 2008 13:09:17 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/33748</guid>
    <author>uiftysuftuduyted8yu</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>26391</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/26391</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>1</knowledge:answers>
        <knowledge:closed label="お蔵入り">Sun, 25 May 2008 06:10:09 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>1 と入力すると「経済学部」、2 で「法学部」、3で「経営学部」、4で「文学部」、それ以外の場合には「不明」と表示されるプログラムを作るのですが。  </title>
    <link>http://knowledge.livedoor.com/33747</link>
    <description>1 と入力すると「経済学部」、2 で「法学部」、3で「経営学部」、4で「文学部」、それ以外の場合には「不明」と表示されるプログラムを作るのですが。


if文とswitch文をやるのですが、いいところまでいくのですが、わかりません。

実行例
]$ showdept
Input dept. number [1-4]: 1
経済学部です。</description>
    <pubDate>Thu, 24 Apr 2008 13:03:33 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/33747</guid>
    <author>uiftysuftuduyted8yu</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>26391</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/26391</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>2</knowledge:answers>
        <knowledge:closed label="お蔵入り">Sun, 25 May 2008 06:10:09 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>Input value of a: 20 Input value of b: 15 のように実行結果で表すにはどのような文にすればいいですか 。emacsですが   </title>
    <link>http://knowledge.livedoor.com/33738</link>
    <description>Input value of a: 20
Input value of b: 15
のように実行結果で表すにはどのような文にすればいいですか
。emacsですが 


</description>
    <pubDate>Thu, 24 Apr 2008 01:26:49 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/33738</guid>
    <author>uiftysuftuduyted8yu</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>26391</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/26391</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>3</knowledge:answers>
        <knowledge:closed label="お蔵入り">Sun, 25 May 2008 06:10:08 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>C言語について教えてください。</title>
    <link>http://knowledge.livedoor.com/33213</link>
    <description>C言語について教えてください。
こんにちは。C言語について教えてください。
構造体のメンバには関数が使えないとのことでしたので、メンバに関数へのポインタを追加しました。
 struct s{
 	int	b;
 	int	c;
 	void	(*d)(void);
 }a;
 
 void	e(void);
 
 s.d = e;
 (*(s.d))();

簡単に書くとこのように代入して使おうと思っていますが、
関数eの中でメンバb・cを参照したい場合はどうすればいいのでしょうか?
本末転倒ですが、eの引数に構造体を与えるしかないのでしょうか。


C言語は一応勉強したことがありますが、使ってないせいかあまり掴めていないです。
よろしくお願いいたします。</description>
    <pubDate>Wed, 02 Apr 2008 14:38:19 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/33213</guid>
    <author>imq</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>13707</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/13707</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>1</knowledge:answers>
        <knowledge:closed label="解決済">Thu, 03 Apr 2008 12:44:16 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>Ｃ言語について教えて下さい。</title>
    <link>http://knowledge.livedoor.com/31615</link>
    <description>Ｃ言語について教えて下さい。
全く知識もなく、正直全然分からないのですが課題をやらなくてはなくて・・・
調べてやっては見たのですが基本もないのでなにがエラーなのかさっぱりわかりません。
他の方の質問内容から下記のようなものはできたのですが・・・



内容は

問題・キーボードから日本円を入力し、ドルに変換した後、ドルを１００ドルなどの紙幣とコインに割り振りなさい。
ただし１ドル109円とする。また、日本円が０円の時にプログラムを終了する。

こういう問題です。また、このプログラムは、１次元配列、for文、if文、while文、do~while文、printf、scanfしか使えず、main()で()の中は空欄です。
もしわかる方がいたら教えてください。

#include &amp;lt;stdio.h&amp;gt;

main()

{

printf(&amp;quot;kingaku &amp;quot;);
scanf(&amp;quot;%d, &amp;amp;money&amp;quot;);
money = (int)( (double) money 100/109.57) ;


for(i=0; i&amp;lt;=6; i++)
{
n[i] = money / kinshu[i];
money = money % kinshu[i];
k[i] = money / kin[i];
}
for(printf(&amp;quot;\n&amp;quot;), i=0; i&amp;lt;=6; i++)
printf(&amp;quot;\\%-3d%3d Mai \n&amp;quot;,kinshu[i],n[i]);
for(printf(&amp;quot;\n&amp;quot;), i=0; i&amp;lt;=4; i++)
printf(&amp;quot;\\%1.0f%3d Mai \n&amp;quot;,kin[i],k[i]);
}
</description>
    <pubDate>Sat, 19 Jan 2008 19:04:59 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/31615</guid>
    <author>ジェにゃイ</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>25026</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/25026</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>5</knowledge:answers>
        <knowledge:closed label="解決済">Fri, 25 Jan 2008 10:49:22 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>自作関数を作ると・・・</title>
    <link>http://knowledge.livedoor.com/31265</link>
    <description>自作関数を作ると・・・
#include &amp;lt;stdio.h&amp;gt;

int myprint(int num)
{
	printf( &amp;quot;%d\n&amp;quot;, num );        
	printf( &amp;quot;%d\n&amp;quot;, num * 2 );    
	printf( &amp;quot;%d\n&amp;quot;, num / 2 );    
	return num * 2;              
}
int main(void)
{
	int num;
	
	printf( &amp;quot;整数を入力して下さい\n&amp;quot; );
	scanf( &amp;quot;%d&amp;quot;, &amp;amp;num );  
	num = myprint( num );    
	myprint( num );       

	return 0;
}

１つの数値を入力すると、
50
100
25

100
200
50

のように、同じことを２回繰り返しますが、mainにmyprint( num );　とあるからですか？　どうして繰り返すのか分かりません。</description>
    <pubDate>Mon, 31 Dec 2007 20:57:55 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/31265</guid>
    <author>1987</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>23754</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/23754</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>1</knowledge:answers>
        <knowledge:closed label="お蔵入り">Thu, 31 Jan 2008 06:10:07 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>for文とbreak文です。</title>
    <link>http://knowledge.livedoor.com/31104</link>
    <description>for文とbreak文です。
#include&amp;lt;stdio.h&amp;gt;

int main()
{
int i, n, sum;
sum = 0;

for (i = 1; i &amp;lt;= 10; i++) {

	scanf(&amp;quot;%d&amp;quot;, &amp;amp;n);
	if (n == -1)//	　　
		break;
		
	sum = sum + n;
}
printf(&amp;quot;sum = %d\n&amp;quot;, sum);
return 0;
}

入力した数値を10まで足し、-1を入力したら終わる
プログラムですが、どうして-1そのものは計算のうち（sum = sum + n;）に入らないですか？</description>
    <pubDate>Sun, 23 Dec 2007 17:26:32 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/31104</guid>
    <author>1987</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>23754</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/23754</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>1</knowledge:answers>
        <knowledge:closed label="解決済">Mon, 24 Dec 2007 01:15:15 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>Ｃ言語です。実行の順番がよく分かりません。</title>
    <link>http://knowledge.livedoor.com/30686</link>
    <description>Ｃ言語です。実行の順番がよく分かりません。
関数を定義し、引数と戻り値の学習をしていますが。
double
関数名(double x, double y)
{
double r;
r = x * y;
return r;
}
これはその一例なのですが、(double x, double y)は何のために宣言したのですか？
x*yが関数だからですか？</description>
    <pubDate>Fri, 07 Dec 2007 02:06:54 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/30686</guid>
    <author>1987</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>23754</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/23754</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>1</knowledge:answers>
        <knowledge:closed label="お蔵入り">Mon, 07 Jan 2008 06:10:08 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>sqat(式)という使い方はできますか？</title>
    <link>http://knowledge.livedoor.com/30034</link>
    <description>sqat(式)という使い方はできますか？
ｃ.x.v.tが与えられた時に、x-ｖｔ/√1-v^2/c^2を計算して答えを書き出すプログラムなのですが。
この場合、sqat（）の（）に数値でなく、式を入れることはできますか？</description>
    <pubDate>Wed, 07 Nov 2007 22:21:14 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/30034</guid>
    <author>1987</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>23754</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/23754</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>1</knowledge:answers>
        <knowledge:closed label="解決済">Mon, 12 Nov 2007 10:37:49 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>型指定子がありません - int と仮定しました。メモ: C++ は int を既定値としてサポートしていません</title>
    <link>http://knowledge.livedoor.com/30004</link>
    <description>型指定子がありません - int と仮定しました。メモ: C++ は int を既定値としてサポートしていません
#include&amp;lt;stdio.h&amp;gt;
main()
{int a, b;
a=0;
b=0;
while(b &amp;gt;=0){
scanf(&amp;quot;%d&amp;quot;, &amp;amp;b);
if(b &amp;gt; a){
a = b;
}}printf(&amp;quot;%d\n&amp;quot;,a);
return	0;}
を実行すると、初めの｛　のところを指示したエラーが出てしまいます。教科書通りなのですが、なぜでしょうか？</description>
    <pubDate>Tue, 06 Nov 2007 06:18:14 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/30004</guid>
    <author>1987</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>23754</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/23754</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>0</knowledge:answers>
        <knowledge:closed label="お蔵入り">Fri, 07 Dec 2007 06:10:04 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>このプログラムの説明願います。</title>
    <link>http://knowledge.livedoor.com/29750</link>
    <description>このプログラムの説明願います。
**
****
********
のように*を倍々しながら20行まで書き出すプログラムの模範解答なんですが。
#include &amp;lt;stdio.h&amp;gt;
int main()
{int i, n, k;
for (n = 1; n &amp;lt;= 20; n += 1) {
k = n * 2;
for (i = 1; i &amp;lt;= k; i += 1) {
printf(&amp;quot;*&amp;quot;);}
printf(&amp;quot;\n&amp;quot;);
}return 0;}
これでどうしてkが*の個数となるんですか？
i&amp;lt;=kとしたからですか？
回答を見ても納得できません。</description>
    <pubDate>Thu, 25 Oct 2007 14:16:32 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/29750</guid>
    <author></author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>21789</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/21789</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>2</knowledge:answers>
        <knowledge:closed label="お蔵入り">Sun, 25 Nov 2007 06:10:07 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>入力した数（１以上）を次々と２で割り、その余りをそれぞれ書き出し、商が０になったら終了するプログラム。</title>
    <link>http://knowledge.livedoor.com/29716</link>
    <description>入力した数（１以上）を次々と２で割り、その余りをそれぞれ書き出し、商が０になったら終了するプログラム。
int main(void)
{int a,b,n；
printf(&amp;quot;aを入力 &amp;gt; &amp;quot;);
scanf(&amp;quot;%d&amp;quot;, &amp;amp;a);
a=a/2;
if(a&amp;gt;=1)
{b=a%2;
printf(&amp;quot;%d\n&amp;quot;, b);
}return 0;}
ここまではできたんですが、次々と２で割るのでa=a/2を繰り返ししなくてはならないかと思います。
whileを使うのですか？　</description>
    <pubDate>Wed, 24 Oct 2007 06:10:44 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/29716</guid>
    <author></author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>21789</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/21789</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>1</knowledge:answers>
        <knowledge:closed label="解決済">Thu, 25 Oct 2007 14:06:21 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>自然数を１つ読み込み、それが偶数なら２で割った値を。奇数なら３倍して１加えた値を画面に書き出すプログラム</title>
    <link>http://knowledge.livedoor.com/29706</link>
    <description>自然数を１つ読み込み、それが偶数なら２で割った値を。奇数なら３倍して１加えた値を画面に書き出すプログラム
数時間前と同じ質問なんですが、
int main() {
int g,a,b;
scanf(&amp;quot;%d&amp;quot;,&amp;amp;g);
if(g%2==0)
{a=g/2;
printf(&amp;quot;%d\n&amp;quot;,a);}
else(g%2==1){
b=3*g+1;
printf(&amp;quot;%d\n&amp;quot;,b);
}return 0;}
のelseをifにすると実行できましたが、elseにするとエラーが出ます。　　前文にifがあるのでelseでもいいのではないですか？　それとも「その他」と同じく条件をつけない時に使うんですか？</description>
    <pubDate>Wed, 24 Oct 2007 01:08:41 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/29706</guid>
    <author></author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>21789</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/21789</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>0</knowledge:answers>
        <knowledge:closed label="お蔵入り">Sat, 24 Nov 2007 06:10:03 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>自然数を１つ読み込み、それが偶数なら２で割った値を。奇数なら３倍して１加えた値を画面に書き出すプログラム</title>
    <link>http://knowledge.livedoor.com/29694</link>
    <description>自然数を１つ読み込み、それが偶数なら２で割った値を。奇数なら３倍して１加えた値を画面に書き出すプログラム
if文を使うんですが、偶数か奇数かを表すのに、入力値以外にaなどとおくのですが、偶数奇数はそれぞれ２*a 2*a+1　としたんですが、
int main() {
int g,a,b;
scanf(&amp;quot;%d&amp;quot;,&amp;amp;g);
a=0;
if(g=2*a )
{
b=g/2;
printf(&amp;quot;%d\n&amp;quot;,b);}return 0;
コレは偶数部分だけですが、ビルドはできるんですが、うまく実行できず、aの扱いがよく分かりません。それともg=2*a　という定義が違っていますか？</description>
    <pubDate>Tue, 23 Oct 2007 14:38:53 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/29694</guid>
    <author></author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>21789</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/21789</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>1</knowledge:answers>
        <knowledge:closed label="解決済">Wed, 24 Oct 2007 05:49:49 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>while(n--)についてです。</title>
    <link>http://knowledge.livedoor.com/29542</link>
    <description>while(n--)についてです。
　C言語を習いたてのものです。これは「整数を入力し、それを倍々し、１０個書き出すプログラム」
なんですが、n--が初期値から１ずつ減らすだけでなく、(n--)自体に「nが０（以下）になったら（ここでは{}内を）実行しない」という意味もあるんですか？
int a, n = 10;
printf(&amp;quot;aを入力 &amp;gt; &amp;quot;);
scanf(&amp;quot;%d&amp;quot;, &amp;amp;a);
while (n--) { 
printf(&amp;quot;%d &amp;quot;, a);
a *= 2; 
}return 0;

</description>
    <pubDate>Tue, 16 Oct 2007 13:26:38 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/29542</guid>
    <author></author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>21789</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/21789</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>1</knowledge:answers>
        <knowledge:closed label="お蔵入り">Fri, 16 Nov 2007 06:10:02 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>非０の整数を二つ読み込み。大きい方を小さい方で割った余りを書き出すプログラム。</title>
    <link>http://knowledge.livedoor.com/29375</link>
    <description>非０の整数を二つ読み込み。大きい方を小さい方で割った余りを書き出すプログラム。
int	a,b,c;
scanf(&amp;quot;%d&amp;quot;,&amp;amp;a);
scanf(&amp;quot;%d&amp;quot;,&amp;amp;b);
 if(b &amp;lt;=a)
{c=a%b;
printf(&amp;quot;%d\n&amp;quot;,c);
if(a&amp;lt;=b)		
{ c=b%a;
printf(&amp;quot;%d\n&amp;quot;,c);
}return	0;}
で実行するとエラーがでます。c=a%b;とc=b%a;の位置が間違っていますか？</description>
    <pubDate>Wed, 10 Oct 2007 13:25:19 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/29375</guid>
    <author></author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>21789</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/21789</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>1</knowledge:answers>
        <knowledge:closed label="お蔵入り">Sat, 10 Nov 2007 06:10:07 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>WINSPOOL.dllが見つかりませんというエラー</title>
    <link>http://knowledge.livedoor.com/28288</link>
    <description>WINSPOOL.dllが見つかりませんというエラー
Turbo C++ の環境でアプリの作成をしていてその後
Studio2006のc++Builderの環境に変えてそのプログラムをコンパイルして実行したら
「プログラムエラー必要なDLL WINSPOOL.dllが見つかりません」といったエラーがでて実行できません
なぜ同じプログラムなのにエラーが出たのか分かりません。直す方法をご教授ください。
プロジェクトオプションの「実行時パッケージを使って構築」のチェックは外してあります。</description>
    <pubDate>Mon, 03 Sep 2007 20:34:51 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/28288</guid>
    <author>c++</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>22545</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/22545</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>0</knowledge:answers>
        <knowledge:closed label="お蔵入り">Thu, 04 Oct 2007 06:10:11 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>LSI c-86 Ver.3.30c試食版をダウンロードして、起動させるにはどうすればいいのでしょうか？</title>
    <link>http://knowledge.livedoor.com/25606</link>
    <description>LSI c-86 Ver.3.30c試食版をダウンロードして、起動させるにはどうすればいいのでしょうか？
高橋麻奈さんの「やさしいC-第2版-」を読んでいて、viページでLSI c-86 Ver.3.30c試食版を使いたくてダウンロードをしたんですけど、使えませんでした。WindowsはMeかXPです。

http://www.vector.co.jp/soft/maker/lsi/se001169.html がダウンロードできるアドレスです。無料です。 

よろしくお願いします！</description>
    <pubDate>Sun, 03 Jun 2007 10:53:06 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/25606</guid>
    <author>バナナマン</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>20266</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/20266</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>0</knowledge:answers>
        <knowledge:closed label="お蔵入り">Wed, 04 Jul 2007 06:10:12 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>c言語のプログラミングのしかたを教えてください。</title>
    <link>http://knowledge.livedoor.com/19572</link>
    <description>c言語のプログラミングのしかたを教えてください。
実は、学校の授業でプログラミングの課題が出たのですがどうしてもわかりません。なので、教えてください。

問題・キーボードから日本円を入力し、ドルに変換した後、ドルを１００ドルなどの紙幣とコインに割り振りなさい。
ただし１ドル１１５円とする。また、日本円が０円の時にプログラムを終了する。

こういう問題です。また、このプログラムは、１次元配列、for文、if文、while文、do~while文、printf、scanfしか使えず、main()で()の中は空欄です。
もしわかる方がいたら教えてください。</description>
    <pubDate>Mon, 15 Jan 2007 17:34:04 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/19572</guid>
    <author>すたん</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>16727</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/16727</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>1</knowledge:answers>
        <knowledge:closed label="解決済">Wed, 17 Jan 2007 16:17:16 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>Ｃ言語を学習するためのラーニングソフト（学習ソフト）ありませんか？</title>
    <link>http://knowledge.livedoor.com/15636</link>
    <description>Ｃ言語を学習するためのラーニングソフト（学習ソフト）ありませんか？
Ｃ言語を学ぶ学習ソフトがあれば教えてください。

シェアウェアでもフリーでもいいです。

声が出るのがいいです。</description>
    <pubDate>Mon, 30 Oct 2006 13:09:51 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/15636</guid>
    <author>respective</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>1476</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/1476</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>1</knowledge:answers>
        <knowledge:closed label="解決済">Sun, 12 Nov 2006 12:02:23 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>この論文について教えてください。</title>
    <link>http://knowledge.livedoor.com/14839</link>
    <description>この論文について教えてください。
この論文のプログラムを実際に打ってやってみたのですが、イマイチ巧くいきません。result.txtに結果が出力されません。なぜでしょうか。また、結果はどのような形で出力されるべきなのでしょうか。教えてください。

http://info2.eng.toyama-u.ac.jp/Grad/noor.pdf#search=%22%E9%81%BA%E4%BC%9D%E7%9A%84%E3%82%A2%E3%83%AB%E3%82%B4%E3%83%AA%E3%82%BA%E3%83%A0%E3%80%80%E5%B7%A1%E5%9B%9E%E3%82%BB%E3%83%BC%E3%83%AB%E3%82%B9%E3%83%9E%E3%83%B3%E5%95%8F%E9%A1%8C%20pdf%22</description>
    <pubDate>Fri, 13 Oct 2006 02:42:42 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/14839</guid>
    <author>respective</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>1476</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/1476</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>5</knowledge:answers>
        <knowledge:closed label="解決済">Mon, 27 Nov 2006 14:34:09 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>&amp;apos;random&amp;apos;:識別子が見つかりませんでした。となる。</title>
    <link>http://knowledge.livedoor.com/14837</link>
    <description>&amp;apos;random&amp;apos;:識別子が見つかりませんでした。となる。
Visual C++でコンパイルするとこのようなエラーが出ました。

borland C++でコンパイルするとエラーは出ません。

どういった箇所を訂正すればいいでしょうか？
よろしくお願いします。</description>
    <pubDate>Fri, 13 Oct 2006 02:14:54 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/14837</guid>
    <author>respective</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>1476</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/1476</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>1</knowledge:answers>
        <knowledge:closed label="解決済">Mon, 16 Oct 2006 08:31:56 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>フリーのＣコンパイラでオススメのもの。</title>
    <link>http://knowledge.livedoor.com/14754</link>
    <description>フリーのＣコンパイラでオススメのもの。
どれですか？？
教えていただけませんでしょうか。</description>
    <pubDate>Wed, 11 Oct 2006 22:09:06 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/14754</guid>
    <author>respective</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>1476</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/1476</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>2</knowledge:answers>
        <knowledge:closed label="解決済">Mon, 16 Oct 2006 08:34:48 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>巡回セールスマン問題（初心者）</title>
    <link>http://knowledge.livedoor.com/3596</link>
    <description>巡回セールスマン問題（初心者）
研究室の教授に、「巡回セールスマン問題をC言語で書いてこい」と言われました。まったく何もわかりません。巡回セールスマン問題とは何か、と言うことは大体ネットなど使ってわかりました。C言語は基本的なことは書けます。初心者の僕は何から始めればいいでしょうか？？また、オススメの書籍などありましたら教えていただけませんか？よろしくお願いします。</description>
    <pubDate>Mon, 27 Mar 2006 15:11:14 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/3596</guid>
    <author>respective</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>1476</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/1476</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>5</knowledge:answers>
        <knowledge:closed label="解決済">Wed, 05 Jul 2006 11:08:08 +0900</knowledge:closed>
    </knowledge:feed>
</item>
<item>
    <title>C# をがっつり勉強したいんですが、プログラミング中上級者向けのオススメサイトがあったら教えてください。</title>
    <link>http://knowledge.livedoor.com/395</link>
    <description>C# をがっつり勉強したいんですが、プログラミング中上級者向けのオススメサイトがあったら教えてください。
</description>
    <pubDate>Mon, 13 Feb 2006 09:18:12 +0900</pubDate>
    <guid isPermaLink="true">http://knowledge.livedoor.com/395</guid>
    <author>dasm</author>
    <category domain="http://knowledge.livedoor.com/category/101006004">C・C++・C#</category>
    <knowledge:feed type="question">
        <knowledge:authorId>688</knowledge:authorId>
        <knowledge:authorLink>http://knowledge.livedoor.com/profile/688</knowledge:authorLink>
        <knowledge:authorIcon>http://knowledge.livedoor.com/img/my/profile_img.gif</knowledge:authorIcon>
        <knowledge:authorThumbnail>http://knowledge.livedoor.com/img/cmn/noimg_m.gif</knowledge:authorThumbnail>
        <knowledge:answers>4</knowledge:answers>
        <knowledge:closed label="お蔵入り">Mon, 26 Jun 2006 06:10:01 +0900</knowledge:closed>
    </knowledge:feed>
</item>
</channel>
</rss>
