









Bigg Boss 19: Daily Discussion Thread- 25th August 2025
Yeh Rishta Kya Kehlata Hai - 25 Aug 2025 EDT
Yeh Rishta Kya Kehlata Hai August 26, 2025 Episode Discussion Thread
ANSHUMAN GONE 25.8
A study On Miss Geetanjali Armaan Poddar
Deepika vs Katrina wars…World War 3 👀
A Study on Miss Abhira "Jogan" Sharma
Anupamaa 25 Aug 2025 Written Update & Daily Discussions Thread
Parineeti Chopra is pregnant
IMDB's most beautiful actresses in the world. Kriti & Hania in top 10
AFTER MATHh. 26.8
Navri’s Love
Punishment to kill one or five is same
Navri - The Hawasi Mistress
New Katrina and Hrithrik Roshan ad for Rado
Maza nahi aaya😒
Who should cliff off
Vicky Kaushal’s Mahavatar postponed to 2027
Bollywood Wants Bootlicker's - Nadiadwala Grandson Sends Legal Notice
Nashibvan: Star Pravaah new show
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 😆😆😆
W elcome to my C hat C lub This is the place where you can take out daily frustrations of your life out via characters of the show you want,...
90