306 subscribers
15 photos
1 video
3 files
11 links
حسابي على الانستا ..me.os10
Download Telegram
Channel created
Channel photo updated
..
Coders pinned a file
Coders
(invalid).bin
هذا كود اليوم 🌹
#include<iostream>


using namespace std;

int main()
{ int a;
cout<<"Enter a number to see its root \n";
cin>>a;
for(int i=1; ;i++)
{
if (i*i==a)
{
cout<<i;
break;
}
}

return 0;
}
🔥1
Coders pinned a file