<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Harish R</title>
    <description>The latest articles on DEV Community by Harish R (@harish_r_850ca66fd34b07e7).</description>
    <link>https://dev.to/harish_r_850ca66fd34b07e7</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2555693%2Fc96d14b7-9c20-4399-b77b-db86d58e6a3f.png</url>
      <title>DEV Community: Harish R</title>
      <link>https://dev.to/harish_r_850ca66fd34b07e7</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/harish_r_850ca66fd34b07e7"/>
    <language>en</language>
    <item>
      <title>[Boost]</title>
      <dc:creator>Harish R</dc:creator>
      <pubDate>Tue, 25 Nov 2025 02:21:49 +0000</pubDate>
      <link>https://dev.to/harish_r_850ca66fd34b07e7/-5377</link>
      <guid>https://dev.to/harish_r_850ca66fd34b07e7/-5377</guid>
      <description></description>
    </item>
    <item>
      <title>[Boost]</title>
      <dc:creator>Harish R</dc:creator>
      <pubDate>Tue, 25 Nov 2025 02:16:04 +0000</pubDate>
      <link>https://dev.to/harish_r_850ca66fd34b07e7/-4kk</link>
      <guid>https://dev.to/harish_r_850ca66fd34b07e7/-4kk</guid>
      <description></description>
    </item>
    <item>
      <title>control flow statemet:</title>
      <dc:creator>Harish R</dc:creator>
      <pubDate>Wed, 29 Jan 2025 07:48:35 +0000</pubDate>
      <link>https://dev.to/harish_r_850ca66fd34b07e7/control-flow-statemet-3bgj</link>
      <guid>https://dev.to/harish_r_850ca66fd34b07e7/control-flow-statemet-3bgj</guid>
      <description>&lt;p&gt;package controlflowmethod;&lt;/p&gt;

&lt;p&gt;what is while?&lt;/p&gt;

&lt;p&gt;In Java, the while loop is used to execute a block of code repeatedly as long as a given condition is true.&lt;/p&gt;

&lt;p&gt;public class While {&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;public static void main(String[] args) {
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;code&gt;task 1&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the i value is 0,&lt;/li&gt;
&lt;li&gt;the condition is (i&amp;lt;5),&lt;/li&gt;
&lt;li&gt;print statement(your choise),&lt;/li&gt;
&lt;li&gt;loop by i=i+1
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                int i=0;
        while(i&amp;lt;5) { 
            System.out.println("1");  //ANS = 1 1 1 1
                i=i+1;
            }
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;code&gt;task 2&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the i value is 5,&lt;/li&gt;
&lt;li&gt;the condition is (i&amp;gt;=1),&lt;/li&gt;
&lt;li&gt;print statement(your choise),&lt;/li&gt;
&lt;li&gt;loop by i=i-1
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
    int i=5;
    while(i&amp;gt;=1) {
        System.out.println(i);   // ANS = 5 4 3 2 1
        i=i-1;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;code&gt;task 3&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the i value is 1,&lt;/li&gt;
&lt;li&gt;the condition is (i&amp;lt;=10),&lt;/li&gt;
&lt;li&gt;print statement(your choise),&lt;/li&gt;
&lt;li&gt;loop by i=i+2
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                int i=1;
        while(i&amp;lt;=10) {
            System.out.println(i);   // ANS = 1 3 5 7 9
            i=i+2;
        }
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;code&gt;task 4&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the i value is 0,&lt;/li&gt;
&lt;li&gt;the condition is (i&amp;lt;10),&lt;/li&gt;
&lt;li&gt;print statement(your choise),&lt;/li&gt;
&lt;li&gt;loop by i=i+2.
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                int i=0;
        while(i&amp;lt;10) {
            System.out.println(i);   // ANS = 0 2 4 6 8
            i=i+2;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    }

}   
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;}&lt;/p&gt;

</description>
      <category>java</category>
      <category>controlflowtypes</category>
      <category>payligam</category>
      <category>todaytask</category>
    </item>
    <item>
      <title>IF TYPES (today topic)</title>
      <dc:creator>Harish R</dc:creator>
      <pubDate>Tue, 28 Jan 2025 08:06:11 +0000</pubDate>
      <link>https://dev.to/harish_r_850ca66fd34b07e7/if-types-today-topic-5dka</link>
      <guid>https://dev.to/harish_r_850ca66fd34b07e7/if-types-today-topic-5dka</guid>
      <description>&lt;p&gt;package ifmodel;&lt;/p&gt;

&lt;p&gt;public class Ifmodel {&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;public static void main(String[] args{
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;/*  IFONLY&lt;br&gt;
  int i=30;&lt;br&gt;
  int j=10;&lt;br&gt;
if(i&amp;gt;j) {&lt;br&gt;
    System.out.println("true");                   //ANS=true&lt;br&gt;
}&lt;br&gt;
&lt;em&gt;/&lt;br&gt;
/&lt;/em&gt;&lt;br&gt;
//IF ELSE&lt;br&gt;
// int i=10;&lt;br&gt;
// int j=20;&lt;br&gt;
if(i&amp;gt;j){&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;System.out.print("i is high"); 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;}&lt;br&gt;
else                                          //ANS =j is high&lt;br&gt;
{&lt;br&gt;
    System.out.print("j is high");&lt;br&gt;
}&lt;br&gt;
&lt;em&gt;/ &lt;br&gt;
/&lt;/em&gt;&lt;br&gt;
// CONDITIONAL STATEMENT&lt;br&gt;
  int i=10;&lt;br&gt;
  int j=10;&lt;br&gt;
if(i
    System.out.print("i is high");&lt;br&gt;
}&lt;br&gt;
else if( j&amp;gt;i) {&lt;br&gt;
    System.out.print("j is high");&lt;br&gt;
} &lt;br&gt;
else {                                       //ANS = both are same&lt;br&gt;
    System.out.print("both are same");&lt;br&gt;
}&lt;br&gt;
*/&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    /*// conditional NESTED IF
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;int i=101;&lt;/p&gt;

&lt;p&gt;if(i&amp;gt;=45 &amp;amp;&amp;amp; i&amp;lt;=100) &lt;br&gt;
{&lt;br&gt;
    if(90&amp;lt;=i  &amp;amp;&amp;amp; 100&amp;gt;=i) {&lt;br&gt;
        System.out.println("a grade");&lt;br&gt;
    }&lt;br&gt;
    else if(80&amp;lt;=i &amp;amp;&amp;amp; i&amp;lt;=89)&lt;br&gt;
    {&lt;br&gt;
        System.out.println("b grade");&lt;br&gt;
    }&lt;br&gt;
    else if(70&amp;lt;=i &amp;amp;&amp;amp; i&amp;lt;=79) {&lt;br&gt;
        System.out.println("c grade");&lt;br&gt;
    } &lt;br&gt;
    else                                         // ANS= FAIL&lt;br&gt;
    {&lt;br&gt;
        System.out.println("d grade");&lt;br&gt;
    }&lt;/p&gt;

&lt;p&gt;}&lt;br&gt;
else&lt;br&gt;
{&lt;br&gt;
    System.out.println("fail");&lt;br&gt;
}&lt;br&gt;
*/&lt;br&gt;
    }&lt;br&gt;
}&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Today task (playground) day 2</title>
      <dc:creator>Harish R</dc:creator>
      <pubDate>Tue, 17 Dec 2024 10:22:20 +0000</pubDate>
      <link>https://dev.to/harish_r_850ca66fd34b07e7/today-task-playground-day-2-24i7</link>
      <guid>https://dev.to/harish_r_850ca66fd34b07e7/today-task-playground-day-2-24i7</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;class Playground1
{
int score,ball,out,run;
String name;
public Playground1(String name,int run,int out,int ball)
{
this.name=name;
this.out=out;
this.ball=ball;
this.run=run;
}
public Playground1(String name,int run,int out)
{

this.name=name;
this.run=run;
this.out=out;

}
public  static void main(String[] args)
{
Playground1 player1=new Playground1("doni",100,3);
Playground1 player2=new Playground1("jadeja",56,2,30);
player1.batting();
player2.allrounder();
}
public void batting()
{
System.out.println(score);
System.out.println(name);
}
public void allrounder()
{
System.out.println(ball);
System.out.println(out);
System.out.println(run);
System.out.println(name);
}
}

output:

![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/sm4ho1ejoesn2z5a1rky.png)


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>Day - 1 Task 1</title>
      <dc:creator>Harish R</dc:creator>
      <pubDate>Tue, 17 Dec 2024 05:09:52 +0000</pubDate>
      <link>https://dev.to/harish_r_850ca66fd34b07e7/day-1-task-1-c4p</link>
      <guid>https://dev.to/harish_r_850ca66fd34b07e7/day-1-task-1-c4p</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;class Employee
{
public static void main(String[] args)
{
Employee hari=new Employee();
int output=hari.work(10);
hari.develop();
System.out.println("output="+output);
}
public int work(int no)
{
return no * 10;
}
public void develop()
{
//system.out.println("output");
}
}





&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;output:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Famcijuz02hv9yzrx38p0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Famcijuz02hv9yzrx38p0.png" alt="Image description" width="654" height="470"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
      <category>programming</category>
      <category>payilagam</category>
    </item>
  </channel>
</rss>
