+ 6
In natural number delete the last digit and display it in the first place ... for example 64583 will be 36458
4 Antworten
+ 6
Thank you bro
+ 3
int f(int x)
{
int res=1;
while(res<=x)
{
res*=10;
}
return res;
}
//n is the start number
x=n%10;
n/=10
n+=f(n)*x
+ 3
Use the searchbar
https://www.sololearn.com/Discuss/2262587/?ref=app
+ 3
you are welcome