<?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: K A B I L</title>
    <description>The latest articles on DEV Community by K A B I L (@kab_il_6224148437ee28b).</description>
    <link>https://dev.to/kab_il_6224148437ee28b</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%2F987647%2Fc9144cfd-c75f-4f64-83c6-51a741b04f87.jpg</url>
      <title>DEV Community: K A B I L</title>
      <link>https://dev.to/kab_il_6224148437ee28b</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kab_il_6224148437ee28b"/>
    <language>en</language>
    <item>
      <title>UI Design x Anime Movie Website</title>
      <dc:creator>K A B I L</dc:creator>
      <pubDate>Sun, 29 Jan 2023 06:42:07 +0000</pubDate>
      <link>https://dev.to/kab_il_6224148437ee28b/ui-design-x-anime-movie-website-43gg</link>
      <guid>https://dev.to/kab_il_6224148437ee28b/ui-design-x-anime-movie-website-43gg</guid>
      <description>&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%2Fh4stx83bjsm8v3oonfrz.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%2Fh4stx83bjsm8v3oonfrz.png" alt="Image description" width="800" height="537"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>postgres</category>
      <category>sql</category>
      <category>database</category>
      <category>json</category>
    </item>
    <item>
      <title>Check 0r Find Armstrong Number in Java</title>
      <dc:creator>K A B I L</dc:creator>
      <pubDate>Sun, 29 Jan 2023 06:38:51 +0000</pubDate>
      <link>https://dev.to/kab_il_6224148437ee28b/check-0r-find-armstrong-number-in-java-26e0</link>
      <guid>https://dev.to/kab_il_6224148437ee28b/check-0r-find-armstrong-number-in-java-26e0</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;public class Arm {
    public static void main(String[] args){

      int num = 370;
      int temp = num;
      int sum=0;
      String power = Integer.toString(num);
      if(num == 0 ){
          System.out.println("Armstrong Number");
      }
      while(temp!=0){
          int digit = temp%10;
         sum = sum+(int)(Math.pow(digit,power.length()));
         temp = temp/10;
      }
      if (num == sum){
          System.out.println("Its a Armstrong Number");
      }else {
          System.out.println("Its not a Armstrong Number");
      }
    }
}

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

&lt;/div&gt;



&lt;p&gt;Output &lt;br&gt;
  Its a Armstrong Number&lt;/p&gt;

</description>
      <category>java</category>
      <category>beginners</category>
      <category>programming</category>
      <category>interview</category>
    </item>
  </channel>
</rss>
