<?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>Her Tür Bilginin Adresi &#187; Cümledeki boşluk karakterinin sayısını bulan program</title>
	<atom:link href="/tag/cumledeki-bosluk-karakterinin-sayisini-bulan-program/feed/" rel="self" type="application/rss+xml" />
	<link>https://herturbilgi.com</link>
	<description>Bilgiye ulaşılan en kısa yol...</description>
	<lastBuildDate>Tue, 21 Oct 2014 12:24:59 +0000</lastBuildDate>
	<language>tr-TR</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.0</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Java Programlama 1- String Örnekler 6</title>
		<link>https://herturbilgi.com/2013/10/java-programlama-1-string-ornekler-4/</link>
		<comments>https://herturbilgi.com/2013/10/java-programlama-1-string-ornekler-4/#comments</comments>
		<pubDate>Wed, 02 Oct 2013 16:33:10 +0000</pubDate>
		<dc:creator><![CDATA[Samime Yorgancılar]]></dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Programlama]]></category>
		<category><![CDATA[Cümledeki boşluk karakterinin sayısını bulan program]]></category>
		<category><![CDATA[java stirng örnekler]]></category>

		<guid isPermaLink="false">https://herturbilgi.com/?p=799</guid>
		<description><![CDATA[Cümledeki boşluk karakterinin sayısını bulan java programı ÇIKTISI: Boşluk sayısı: 2]]></description>
				<content:encoded><![CDATA[<p>Cümledeki boşluk karakterinin sayısını bulan java programı</p>
<pre class="brush: java; title: ; notranslate">

import java.util.Scanner;
//Cümledeki boşluk karakterinin sayısını bulan program

public class ornek {

public static void bosluk(String cumle){
char bosluk=' ';
int sayac=0;
for (int i = 0; i &lt; cumle.length(); i++) {
if(cumle.charAt(i)==bosluk)
sayac++;
}

System.out.println(&quot;Boşluk sayısı:&quot;+sayac);

}
public static void main(String[] args) {
bosluk(&quot;mete bayrak as. &quot;);

}

}
</pre>
<p><strong>ÇIKTISI</strong>: Boşluk sayısı: 2</p>
]]></content:encoded>
			<wfw:commentRss>https://herturbilgi.com/2013/10/java-programlama-1-string-ornekler-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

 Served from: herturbilgi.com @ 2015-01-01 13:55:19 by W3 Total Cache -->