Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
perfect square
#include <bits/stdc++.h> using namespace std; int main() { int l,r; cin>>l>>r; cout<<"Perfect square between L and R are: "; for(int i=l;i<=r;i++) { for(int j=1; j<=sqrt(i);j++) if ( i%j==0 and i/j==j ) {cout<<i<<" ";break;} } return 0; }
run
|
edit
|
history
|
help
1
sd
Stream7
Expected types
an awesome question of basic graph traversal (786A)
Chinu
HeapSort
UB mutex lock
Size of data type test
MyStack
QuadRootPoint