Coders
@os_programmer
306
subscribers
15
photos
1
video
3
files
11
links
حسابي على الانستا ..me.os10
Download Telegram
Join
Coders
306 subscribers
Coders
Channel created
Coders
Channel photo updated
Coders
..
Coders
(invalid).bin
306 B
Coders
Coders
pinned a file
Coders
Coders
(invalid).bin
هذا كود اليوم
🌹
Coders
#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
Coders
#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; …
كود اليوم اذا ما اشتغل معك الملف
🌹
Coders
الاطلاع على ME.OS:
https://t.me/os_programmer
Telegram
Coders
حسابي على الانستا ..me.os10
Coders
cxxdroid-c-cplusplus-compiler-ide-5-2-arm.apk
46.5 MB
👍
2
Coders
Coders
pinned a file
Coders
Channel name was changed to «
Coders
»
Coders
Coders
pinned a file
Coders
#include
<iostream>
using namespace std;
int main()
{
for(int i=0; i<=10;i+=2)
{
cout<<i;
i++;
}
return 0;
}
👍
5