<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>システム開発とシステムコンサルティングのミリオンウェーブズ &#187; VB.NET</title>
	<atom:link href="http://www.millionwaves.com/category/development/vbnet/feed" rel="self" type="application/rss+xml" />
	<link>http://www.millionwaves.com</link>
	<description>システムコンサルティング、システム開発、Web制作、トラブルサポート</description>
	<lastBuildDate>Wed, 25 Jan 2012 09:04:45 +0000</lastBuildDate>
	
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>VB.NETとC#の算術演算子について</title>
		<link>http://www.millionwaves.com/development/vbnet/240</link>
		<comments>http://www.millionwaves.com/development/vbnet/240#comments</comments>
		<pubDate>Sun, 19 Dec 2004 11:48:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://www.millionwaves.com/?p=240</guid>
		<description><![CDATA[

機能
演算子(VB.NET)
演算子(C#)
例(VB.NET)
例(C#)
結果


足し算
+
+
1+2
1+2
3


引き算
-
-
2-1
2-1
1


掛け算
*
*
3*4
3*4
12


割り算 [...]]]></description>
			<content:encoded><![CDATA[<table border="1" cellspacing="0" cellpadding="3">
<tr align="center" bgcolor="#f0ffff">
<td>機能</td>
<td>演算子(VB.NET)</td>
<td>演算子(C#)</td>
<td>例(VB.NET)</td>
<td>例(C#)</td>
<td>結果</td>
</tr>
<tr align="center">
<td><strong>足し算</strong></td>
<td>+</td>
<td>+</td>
<td>1+2</td>
<td>1+2</td>
<td>3</td>
</tr>
<tr align="center">
<td><strong>引き算</strong></td>
<td>-</td>
<td>-</td>
<td>2-1</td>
<td>2-1</td>
<td>1</td>
</tr>
<tr align="center">
<td><strong>掛け算</strong></td>
<td>*</td>
<td>*</td>
<td>3*4</td>
<td>3*4</td>
<td>12</td>
</tr>
<tr align="center">
<td><strong>割り算</strong></td>
<td>/</td>
<td>/</td>
<td>5/2</td>
<td><strong>5.0/2.0</strong></td>
<td>2.5</td>
</tr>
<tr align="center">
<td><strong>割り算の商</strong></td>
<td>\</td>
<td>/</td>
<td>5\2</td>
<td><strong>5/2</strong></td>
<td>2</td>
</tr>
<tr align="center">
<td><strong>割り算の余り</strong></td>
<td>Mod</td>
<td>%</td>
<td>7 Mod 2</td>
<td>7%2</td>
<td>1</td>
</tr>
<tr align="center">
<td><strong>べき乗</strong></td>
<td>^</td>
<td>
なし<br />
Math.Pow()を使う</td>
<td>3^2</td>
<td>Math.Pow(3,2)</td>
<td>9</td>
</tr>
</table>
<h3 class="related_post_title mtb15">関連するお話</h3><ul class="related_post"><li>これから増やしていきます！</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.millionwaves.com/development/vbnet/240/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

