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
Channel name was changed to «Coders»
Coders pinned a file
#include<iostream>


using namespace std;

int main()
{
for(int i=0; i<=10;i+=2)
{

cout<<i;
i++;


}


return 0;
}
👍5
Coders pinned «#include<iostream> using namespace std; int main() { for(int i=0; i<=10;i+=2) { cout<<i; i++; } return 0; }»