









Bigg Boss 19: Daily Discussion Thread - 10th Oct 2025
Bigg Boss 19 - Daily Discussion Topic - 11th Oct 2025 - WKV
COURSE TOGETHER 10.10
Deepika finally breaks her silence on exit from Spirit and Kalki
THALI KA BAINGAN 11.10
Yeh Rishta Kya Kehlata Hai Oct 11, 2025 Episode Discussion Thread
Tum se Tum tak episodes - EDT #2
Masterminds-Pari n RV
Rumour - Alia Bhatt In Kalki 2
Anupamaa 10 Oct 2025 Written Update & Daily Discussions Thread
Kyunki episode Summary with pics : Oct 11
Is Janhvi Kapoor a better actress than Aishwarya Rai ever was?
Katrina has destroyed her face! even Kareena looks better than her
✦ Font-astic Voyage Contest Voting Round 2 | Invites ONLY ✦
Happy Birthday Amitabh Bachchan
Sakshi Tanwar to enter Kyunki
Out now song - Rahein Na Rahein Hum - Thamma
East or West, Farhana is da beshhhttt
Deepika appointed as India's first Mental Health Ambassador
1. This is a Malayalam CC. If you can't understand Malayalam then stay away.😃
2. If you are not a member here then please get the hell outta here. This is a invites only CC. No one can post here without being invited.😊
3. In order to join you have to PM me and for that you should know malayalam first.😛
4. All Rules of IF and CC forum ( 1 & 2 ) must be followed (read rules before posting).😳
5. No bashing ; if you have any prob pls PM me.😳
6. Anything and everything under the sun will be discussed here...if you have a problem, then please keep quite.😳
7. You can do discussions here. But no fight. This is Fight prohibited area.😳
8. MM fight is strictly not allowed. Mammootty and Mohanlal fans stay away ( ; if you are a fighting fan😉).😳
9. If for any reasons, you wish to withdraw your membership, PM me so that I can edit the Members' List.😛
10. If the thread is complete, PM me i'll make another one.😛
11. Please help us to keep the thread clean and friendly, don't hurt other CC member.😛
12. Use like button not report button😉. Inform me before reporting.😛
13. Try to be active in the forum and eat the threads as fast as you can - show mallu power.😉
14. Discussions are allowed in Malayalam only (strict rule).❤️
15. Respect::Love::Peace & HAVE FUN!!!👍🏼
PS : YOU HAVE TO FOLLOW THE RULES STICTLY, OTHERWISE I'LL REPORT😡😊
30
9) Write a program in java to print Kaprekar number between p & q . a positive whole number n that has d digits and a left hand price that has remaining d or (d-1)digit if sum of the price is equal to the number ,then it is a kaprekar number
Example; 45
452=2025
20+25=45
Then it is a kaprekar number
Program:
import java.io.*;
class Kaprekar
{
int Kaprekar(int m)
{
int c,a,count=0,p,q,s,n;
n=m*m;
31
c=n;
while(n!=0)
{
count++;
a=n%10;
n=n/10;
}
if(count%2==0)
count=count/2;
else
count=(count/2)+1;
p=c/(int)(Math.pow(10,count));
q=c%(int)(Math.pow(10,count));
s=(int)(p+q);
return(s);
}
public void main()throws IOException
32
{
BufferedReader in=new BufferedReader(new InputStreamReader(System.in));
System.out.println("enter the value for k");
int k=Integer.parseInt(in.readLine());
Kaprekar ob=new Kaprekar();
int l=ob.Kaprekar(k);
if(l==k)
System.out.println("The number is Kaprekar");
else
System.out.println("The number is not Kaprekar");
}
}
33
Output:
enter the value for k
45
The number is Kaprekar
manasilayooOriginally posted by: SurYalover
puthiya noolinu abinandanagal 🥳
athu java simple aanenn ippo manasilaayi 😆😆😆