<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>My grand padlet 3 july by Avaneesh Srivastava</title>
      <link>https://padlet.com/avaneeshsrivastava/9kcewhhezh89o6eq</link>
      <description>Made with a taste for adventure</description>
      <language>en-us</language>
      <pubDate>2021-06-25 12:37:49 UTC</pubDate>
      <lastBuildDate>2025-12-02 16:31:04 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>question</title>
         <author>avaneeshsrivastava</author>
         <link>https://padlet.com/avaneeshsrivastava/9kcewhhezh89o6eq/wish/1672428980</link>
         <description><![CDATA[<div>Specify a class smitharr containing one-dimension integer array of N elements with following<br>details:<br>Class name: smitharr<br>Data members/ Instance variables:<br>Arr[] : Stores the array elements<br>N : integer to store the number of rows<br>Member functions/Methods:<br>smitharr (int nn) : parameterised constructor to initialise the data<br>member N=nn.<br>void fillarray() : to input numbers in the array.<br>boolean isprime(int x) : returns true if x is prime number else return false<br>int sumdigit(int x) : return sum of digits present in number x.<br>int sumprimefact(int num) : generates prime factors of num and returns their sum.<br>void display() : displays the smith numbers present in the array.<br>(Smith number is a composite number; the sum of whose digit is the sum of digits of its prime<br>factors obtained as a result of prime factorization [excluding 1]. Example: 666<br>Prime factors are 2,3,3 and 37, its sum of digits are (6+6+6)=18 and sum of digits of prime factors<br>are (2+3+3+(3+7))=18. )<br>Specify the class smitharr giving details of constructor and all the methods.<br>Define main() method to create and object and call the functions accordingly to enable the task.</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-08-09 04:05:21 UTC</pubDate>
         <guid>https://padlet.com/avaneeshsrivastava/9kcewhhezh89o6eq/wish/1672428980</guid>
      </item>
      <item>
         <title>Aditya</title>
         <author></author>
         <link>https://padlet.com/avaneeshsrivastava/9kcewhhezh89o6eq/wish/1672448643</link>
         <description><![CDATA[<div>import java.util.*;<br>class smitharr<br>{<br>int Arr[] ;<br>int N = 0 ;<br>smith ( int nn )<br>{<br>N = nn ;<br>Arr = new int [ N ] ;<br>}<br>void fillarray ()&nbsp;<br>{<br>Scanner sc = new Scanner ( System.in ) ;<br>System.out.println ( " Enter " + N + " numbers " ) ;<br>for ( int i = 0 ; i &lt; N ; i ++ )&nbsp;<br>Arr[i] = sc.nextInt() ;<br>}<br>boolean isprime ( int x )&nbsp;<br>{<br>int c = 0 ;<br>for ( int i = 1 ; i &lt;= x ; i++ )<br>{<br>if ( x % i == 0 )&nbsp;<br>c++ ;<br>}<br>if ( c == 2 )&nbsp;<br>return true ;<br>else<br>return false ;<br>}<br>int sumdigit ( int x )&nbsp;<br>{<br>int sum = 0 ;<br>while ( x &gt; 0 )&nbsp;<br>{<br>sum = sum + ( x % 10 ) ;<br>x = x / 10 ;<br>}<br>return sum ;<br>}<br>int sumprimefact ( int num )&nbsp;<br>{<br>int sum = 0 ;<br>for ( int i = 1 ; i &lt;= num ; i ++ )&nbsp;<br>{<br>if ( num % i == 0)&nbsp;<br>{<br>if ( isprime( i ) == true )&nbsp;<br>sum = sum + sumdigit ( i ) ;<br>}<br>}<br>return sum ;&nbsp;<br>}<br>void display ()<br>{<br>for ( int i = 0 ; i &lt; N&nbsp; ; i ++)&nbsp;<br>{<br>if ( sumdigit( Arr[i])&nbsp; == sumprimefact ( Arr[i] ))&nbsp;<br>System.out.print ( Arr[i] + ", " )&nbsp;<br>}<br>void main ( int nn1 )<br>{<br>smitharr obj&nbsp; = new smitharr ( nn1 ) ;<br>obj.fillarray() ;<br>obj.display() ;<br>}<br>}<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2021-08-09 04:24:48 UTC</pubDate>
         <guid>https://padlet.com/avaneeshsrivastava/9kcewhhezh89o6eq/wish/1672448643</guid>
      </item>
      <item>
         <title>Anumay Rai XI A</title>
         <author>anumayrai2nov2004</author>
         <link>https://padlet.com/avaneeshsrivastava/9kcewhhezh89o6eq/wish/1672449461</link>
         <description><![CDATA[<div>Doing in Notebook<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2021-08-09 04:25:28 UTC</pubDate>
         <guid>https://padlet.com/avaneeshsrivastava/9kcewhhezh89o6eq/wish/1672449461</guid>
      </item>
      <item>
         <title>Aryashi</title>
         <author></author>
         <link>https://padlet.com/avaneeshsrivastava/9kcewhhezh89o6eq/wish/1672449858</link>
         <description><![CDATA[<div>doin' in notebook</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-08-09 04:25:52 UTC</pubDate>
         <guid>https://padlet.com/avaneeshsrivastava/9kcewhhezh89o6eq/wish/1672449858</guid>
      </item>
      <item>
         <title></title>
         <author>adityajaiswal2</author>
         <link>https://padlet.com/avaneeshsrivastava/9kcewhhezh89o6eq/wish/1983270476</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/671526250/df719f536a6021ab1fab29f053da1d75/image.png" />
         <pubDate>2022-01-10 07:38:44 UTC</pubDate>
         <guid>https://padlet.com/avaneeshsrivastava/9kcewhhezh89o6eq/wish/1983270476</guid>
      </item>
   </channel>
</rss>
