🔥 Burn Fat Fast. Discover How! 💪

OFF CAMPUS UPDATES

Logo of telegram channel freejobs77 — OFF CAMPUS UPDATES O
Logo of telegram channel freejobs77 — OFF CAMPUS UPDATES
Channel address: @freejobs77
Categories: Technologies
Language: English
Subscribers: 27.37K
Description from channel

🌀 ” Our Only Aim Is To Let Get Placed To You In A Reputed Company. “
🔥 Free materials of all companies
🔥 Off campus updates
🔥 Interview experiences

Ratings & Reviews

3.50

2 reviews

Reviews can be left only by registered users. All reviews are moderated by admins.

5 stars

1

4 stars

0

3 stars

0

2 stars

1

1 stars

0


The latest Messages 253

2021-09-15 09:37:38
Upmarket code
387 views06:37
Open / Comment
2021-09-15 09:37:18
Gov code
377 views06:37
Open / Comment
2021-09-15 09:35:02
Upmarket housing society code anyone ..plsss??
356 views06:35
Open / Comment
2021-09-15 09:33:24
Government code
296 views06:33
Open / Comment
2021-09-15 09:27:38 int fun(int n,int m)
{
int sum=n+m;
If(countdigits(sum)==countdigits(n))
return sum;
else
return n;
}
int countDigit(int n)
{

int count = 0;

while (n != 0)

{

n = n / 10;

++count;

}

return count;
}

Same number of digits code




lower = int(input("Enter lower range: "))
upper = int(input("Enter upper range: "))

for num in range(lower,upper + 1):
if num > 1:
for i in range(2,num):
if (num % i) == 0:
break
else:
print(num)

This is for circular prime u can modify this based on input and output format




def ret_s(n):
result=0
while(n>0):
result+=n%10
n=int(n/10)
return result
n=int(input())
r=int(input())
re=r*ret_s(n)
print(ret_s(re))

For an intelligent agency has recived




n = int(input());

v = int(input());
temp = 0
for i in range(1,n+1):
for j in range(1,n+1):
if i*j == v:
temp = temp + 1
if temp == 0:
print('NO POWER')
else:
print(temp)



No of n houses,
in phython




def ret_s(n):
result=0
while(n>0):
result+=n%10
n=int(n/10)
return result
n=int(input())
r=int(input())
re=r*ret_s(n)
print(ret_s(re))

For an intelligent agency has recived




Same number of digits code

int fun(int n,int m)
{
int sum=n+m;
If(countdigits(sum)==countdigits(n))
return sum;
else
return n;
}
int countDigit(int n)
{
int count = 0;
while (n != 0)
{
n = n / 10;
++count;
}
return count;
}


Intelligent agency code



def ret_s(n):
result=0
while(n>0):
result+=n%10
n=int(n/10)
return result
n=int(input())
r=int(input())
re=r*ret_s(n)
print(ret_s(re))



POWER CODE



#include

using namespace std;

int main()
{

int n,v;
cin>>n;
cin>>v;
int count=0;
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
{
if(i*j==v)
count++;
}

}
if(count!=0)
cout<else
cout<<"NO POWER";

return 0;
}




from itertools import combinations
n = int(input());
m = int(input());
p = int(input());
e = int(input());
comb1 = combinations(range(0,n), p);
comb2 = combinations(range(0,m), e);
temp = len(list(comb1)) * len(list(comb2));
print(temp);


Sationary code
Telegram
@freejobs77
@freejobs77
@freejobs77
290 views06:27
Open / Comment
2021-09-15 09:25:18 from itertools import combinations
n = int(input());
m = int(input());
p = int(input());
e = int(input());
comb1 = combinations(range(0,n), p);
comb2 = combinations(range(0,m), e);
temp = len(list(comb1)) * len(list(comb2));
print(temp);


Sationary code
255 views06:25
Open / Comment
2021-09-15 09:22:20
Boy cods
Telegram:@freejobs77
289 views06:22
Open / Comment
2021-09-15 09:19:12
Housing society
Telegram:@freejobs77
293 viewsedited  06:19
Open / Comment
2021-09-15 09:15:38
#include

int main()
{
int n,r,sum=0;
scanf("%d",&n);
scanf("%d",&r);
while(n>0)
{
int r=n%10;
sum=sum+r;
n=n/10;
}
int p=sum*r;
int s=0;
while(p>0)
{
int q=p%10;
s=s+q;
p=p/10;
}
printf("%d",s);
return 0;
}
Positive interger
Telegram:@freejobs77
319 views06:15
Open / Comment
2021-09-15 09:11:06 POWER CODE

#include

using namespace std;

int main()
{

int n,v;
cin>>n;
cin>>v;
int count=0;
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
{
if(i*j==v)
count++;
}

}
if(count!=0)
cout<else
cout<<"NO POWER";

return 0;
}
Telegram:@freejobs77
343 views06:11
Open / Comment