

















Bigg Boss 19 - Daily Discussion Topic - 1st Nov 2025 - WKV
Bigg Boss 19 - Daily Discusdion Topic - 2nd Nov 2025 - WKV
🏏ICC Women's World Cup 2025: South Africa W vs India W, FINAL🏏
BILLI IN BASKET 2.11
BEIJJATI AT PEAKS 1.11
🏏India tour of Australia, 2025: AUS vs IND,3rd T20I, Oval🏏
🏏A Nation With Billion Dreams, Best Wishes to Our Women in Blue🏏
Angad marries Vrinda ; Mihir & Tulsi ka rishta khatam!
Yeh Rishta Kya Kehlata Hai - 03 Nov 2025 EDT
Should Salman Khan finally find a girl to marry on his 60th birthday?
Favourite couple : Nov.1, 2025.Best epi. HD Clip. 😆😆
What if............Arjun
Aishwarya Rai at fault for ruining Salman's life?
From Progressive To Regressive?




















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 😆😆😆