+ 2
Hey! Anyone here love hacking?WHY?
6 Réponses
+ 3
Wow! I got that but I was just asking
+ 2
hey don't understand it is hacking or cracking is based on our coding skills
+ 2
I need yoyr help ....
1. How can I create recursive function to print all the even positive numbers between two given number (JAVA)
2. I need to write a function that finds the minimum and maximum values in a sequences without using any loops.
+ 2
#
#
void main()
{
int n,x,a,b;
cin>>n>>x;
a=n>x?n:x; //for large
b=n<x?n:x; //for small
for(i=(b+1);i<a;i++)
{
cout<<i<<",";
}
}
i dont know what is recursive function but i have tried to solve your 1 question
+ 1
@gawen steasy please check my code posted in this Q/A of hacking
given by @elmurot's question number 1