









Yeh Rishta Kya Kehlata Hai - 29 Aug 2025 EDT
Yeh Rishta Kya Kehlata Hai - 30 Aug 2025 EDT
Bigg Boss 19 - Daily Discussion Topic - 30th Aug 2025 - WKV
MAIRAs SCHOOL 29.8
MAIRA KNOWS 30.8
Aneet and Ahaan on the cover of THR!!
Param Sundari opens well
Throw back! When katrina did not take 'gentle' gently from Shah!
Monsoon Magic Micro-fiction Contest Felicitation Ceremony
Deepika Ranveer At Ambani Ganpati Festival
Anupamaa 29 Aug 2025 Written Update & Daily Discussions Thread
Cannot decide who is most annoying
Bullying in the first week?
Nazar laga hua anda mein nahi khaata
Ijja-jjat hai
Trailer - Do You Wanna Partner - Tamannaah Bhatia Diana Penty
Unseen bollywood pics
Queen 2 Tanu Weds Manu 3 Get Rolling
Amaal has a message for his Phansss 😇
Anupamaa completes FIVE Years !! Fifth Anniversary Celebrations
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