FrozenFlame
Flag: Japan
Registered: May 22, 2022
Last post: August 1, 2025 at 2:16 PM
Posts: 198
1 2 3 4

BOTSSI 🗿

posted about 2 years ago

Feels good man o͜ﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞﱞo

posted about 2 years ago

It would have been worse if they somehow got to playoffs with those disastrous performances kkkkkkkk

posted about 2 years ago

Bot detected opinion rejected 🗿

posted about 2 years ago

Okay

posted about 2 years ago

Just in case

posted about 2 years ago

Ain't reading allat

posted about 2 years ago

Bump!

posted about 2 years ago

Hey 👋, if any of you plays clash royale, please help us in clan wars , we are just 50 points behind to secure the lead. Any help is appreciated 😊

posted about 2 years ago

Probably in the month which has no Sundays 🗿

posted about 2 years ago

Stop generalizing you dimwit! Every state/country has some dogshit people who are cracked in the head but that doesn't mean that you can generalize them.

posted about 2 years ago

trust me LF has far better game sense than skrossi and can blend into any role unlike skrobot.

posted about 2 years ago

+57 wtf !! Dude's smurfing holy shit😳

posted about 2 years ago

^^

posted about 2 years ago

Buy me a knife skin maybe?

posted about 2 years ago

Viper mini could be a good choice

posted about 2 years ago

I have made a space for you to join

posted about 2 years ago

Wait I'll remove some inactives

posted about 2 years ago

Thanks a bunch! You saved us 😄

posted about 2 years ago

Not a problem! Just join in if you have your attacks left : ).We don't discriminate in skill levels

posted about 2 years ago

We need 3 more people to use their attacks. If any of you folks plays clash royale and have today's war attacks left please join this clan , we are hella active in terms of donations and nearing legendary league in clan wars.
https://link.clashroyale.com/invite/clan/en?tag=99GQ9LVR&token=7mj3fm7c&platform=android

posted about 2 years ago

Are we comparing an irreverent clown org 🤡 to parla?

posted about 2 years ago

"ass"ension, yeah we will definitely win it 🗿

posted about 2 years ago

We don't claim these bots🗿

posted about 2 years ago

I am confused ! Is this a lan?or are they playing with 200 pings?

posted about 2 years ago

Gardevoir

posted about 2 years ago

Cringe😑

posted about 2 years ago

It's running but it's giving garbage or random values upto 20th term

posted about 2 years ago

Ikr? But I have to do it for the university assignments :⁠^⁠)

posted about 2 years ago

#include <stdio.h>
#include <conio.h>
#include <math.h>
#define MAX 20
void init(int p[]);
void read(int p1[],int p2[]);
void print(int p[]);
void add(int p1[],int p2[],int p3[]);
void sub(int p1[],int p2[],int p3[]);
void multiply(int p1[],int p2[],int p3[]);
void main()
{
int p1[MAX],p2[MAX],p3[MAX];
int choice;
do
{
printf("\n 1. Creation of polynomials ");
printf("\n 2. Addition of polynomials ");
printf("\n 3. Substraction of polynomials ");
printf("\n 4. Multiplication of polynomials ");
printf("\n 5. EXIT ");
printf("\n 1. Please enter your choice ");
scanf("%d",&choice);
switch(choice)
{
case 1 : read(p1,p2);
break;
case 2 : add(p1,p2,p3);
printf("\n 1st Polynomial ");
print(p1);
printf("\n 2nd Polynomial ");
print(p2);
printf("\n Sum of given polynomials : ");
print(p3);
break;
case 3 : sub(p1,p2,p3);
printf("\n 1st Polynomial ");
print(p1);
printf("\n 2nd Polynomial ");
print(p2);
printf("\n Substraction of given polynomials : ");
print(p3);
break;
case 4 : multiply(p1,p2,p3);
printf("\n 1st Polynomial ");
print(p1);
printf("\n 2nd Polynomial ");
print(p2);
printf("\n Multiplication of given polynomials : ");
print(p3);
break;
}
}
while(choice!=5);
}
void read(int p1[],int p2[])
{
int n,i,power1,coeff1,power2,coeff2;
init(p1);
printf("\n Enter number of terms : ");
scanf("%d",&n);
for(i=0;i<n;i++)
{
printf("\n Enter the First term (power,coefficient) ");
scanf("%d%d",&power1,&coeff1);
p1[power1]=coeff1;
}
init(p2);
printf("\n Enter number of terms : ");
scanf("%d",&n);
for(i=0;i<n;i++)
{
printf("\n Enter the Second term (power,coefficient) ");
scanf("%d%d",&power2,&coeff2);
p2[power2]=coeff2;
}

}
void init(int p[])
{
int i;
for(i=0;i<MAX;i++)
p[i]=0;
}
void add(int p1[],int p2[],int p3[])
{
int i;
for(i=0;i<MAX;i++)
p3[i]=p1[i] + p2[i];
}
void sub(int p1[],int p2[],int p3[])
{
int i;
for(i=0;i<MAX;i++)
p3[i]=p1[i] - p2[i];
}
void multiply(int p1[],int p2[],int p3[])
{
int i,j,k;
for( i=0; i<=MAX; i++)
for( j=0; j<=MAX; j++)
k=i+j;
p3[k] = p3[k]+p1[i]*p2[j];
}
void print(int p[])
{
int i;
for(i=0;i<MAX;i++)
if(p[i]!=0)
printf("%dX^%d ",p[i],i);
}

posted about 2 years ago

Addition and substraction of polynomials is working fine but the multiplication isn't

posted about 2 years ago

I feel for you man 😔

posted about 2 years ago

Lmao we are about to get banged💀

posted about 2 years ago

God's squad vs boys out of Mumbai , either way india wins🗿

posted about 2 years ago

When is it coming back?

posted about 2 years ago

Aspas

posted about 2 years ago

Viper mini

posted about 2 years ago

This is either a hit or a miss with Cned.W nonetheless!

posted about 2 years ago

Title ^

posted about 2 years ago

Pet wussy

posted about 2 years ago

It dropped to 1.8k on big billion days sale💀

posted about 2 years ago

Let's go eggman!

posted about 2 years ago

Oswald is a safety-conscious but fun-loving octopus who lives in an apartment complex in Big City with his dog, Weenie. His neighborhood is peopled with colorful characters like his pal, Henry the Penguin, Madame Butterfly, who runs the Big Diner, and her daughter, Catrina Caterpillar. Oswald likes to play the piano and sing, and he always does whatever he can to help his friends and neighbors.

posted about 2 years ago

"Bigger the mass🍑 , bigger is the force of attraction"😈😈

posted about 2 years ago

Morning wood esports

posted about 2 years ago

The trash one 💀

posted about 2 years ago
1 2 3 4