Forwarded from دستیار زیر نویس و هایپر لینک
✳️ برنامه نویسی c#
🌎 لینک دانلود:
🌎 http://uploadboy.me/n0keu32fr73d/@computeriha-csharp_tutorial.pdf.html
🆔 @booksharing
🆔 @computeriha
🌎 لینک دانلود:
🌎 http://uploadboy.me/n0keu32fr73d/@computeriha-csharp_tutorial.pdf.html
🆔 @booksharing
🆔 @computeriha
Forwarded from Deleted Account
📔📕📗
به مناسبت نمايشگاه كتاب
فروش كتاب "امنيت اطلاعات"
با ٢٠٪ تخفيف و ارسال رايگان به سراسر كشور
👇👇👇
http://goo.gl/rtLLbO
به مناسبت نمايشگاه كتاب
فروش كتاب "امنيت اطلاعات"
با ٢٠٪ تخفيف و ارسال رايگان به سراسر كشور
👇👇👇
http://goo.gl/rtLLbO
✳️ اولین برنامه cpp
#include <iostream>
using namespace std;
// tozih dar ayande
int main()
{
// cout bejaye printf dar c
cout « "Salam @computeriha"«endl;
return 0;
}
🆔 @computeriha
#include <iostream>
using namespace std;
// tozih dar ayande
int main()
{
// cout bejaye printf dar c
cout « "Salam @computeriha"«endl;
return 0;
}
🆔 @computeriha
✳️ تفاوت وجود using namespace std و عدم وجودشو ببینید (cpp)
#include <iostream>
int main()
{
std::cout « "Hello World";
system("pause");
return 0;
}
—---------------------------------------------
#include <iostream>
using namespace std;
int main()
{
cout « "Hello World";
system("pause");
return 0;
}
—---------------------------------—
🆔 @computeriha
#include <iostream>
int main()
{
std::cout « "Hello World";
system("pause");
return 0;
}
—---------------------------------------------
#include <iostream>
using namespace std;
int main()
{
cout « "Hello World";
system("pause");
return 0;
}
—---------------------------------—
🆔 @computeriha
Forwarded from دستیار زیر نویس و هایپر لینک
Forwarded from دستیار زیر نویس و هایپر لینک
✳️ آموزش قدم به قدم برنامه نویسی وب با PHP (جلسه اول: #php1)
🌎 دانلود از لینک زیر:
🌎 http://uploadboy.me/2g8yg1wfspm4/PHP1.pdf.html
🆔 @itfarsi
🌎 دانلود از لینک زیر:
🌎 http://uploadboy.me/2g8yg1wfspm4/PHP1.pdf.html
🆔 @itfarsi
✳️ Function declaration, definition and call in c++
—---------------------—
// function declaration
int func();
int main()
{
// function call
int i = func();
}
// function definition
int func()
{
return 0;
}
—-------------
🆔 @computeriha
—---------------------—
// function declaration
int func();
int main()
{
// function call
int i = func();
}
// function definition
int func()
{
return 0;
}
—-------------
🆔 @computeriha
Forwarded from دستیار زیر نویس و هایپر لینک
✳️ آموزش قدم به قدم برنامه نویسی وب با PHP (جلسه دوم: #php2)
🌎 دانلود از لینک زیر:
🌎 http://uploadboy.me/mbqji9g4sjl1/php2.pdf.html
🆔 @itfarsi
🌎 دانلود از لینک زیر:
🌎 http://uploadboy.me/mbqji9g4sjl1/php2.pdf.html
🆔 @itfarsi
Forwarded from دستیار زیر نویس و هایپر لینک
✳️ کتاب برنامه نویسی کاربردی هوش مصنوعی با زبان جاوا
🌎 دانلود مستقیم از کانال 👇👇👇👇👇👇👇👇👇👇
🆔 @booksharing
🆔 @computeriha
🌎 دانلود مستقیم از کانال 👇👇👇👇👇👇👇👇👇👇
🆔 @booksharing
🆔 @computeriha
✳️ ایجاد رفرنس در cpp
—-------------------
#include <iostream>
using namespace std;
int main ()
{
// declare simple variables
int i;
double d;
// declare reference variables
int& r = i;
double& s = d;
i = 5;
cout « "Value of i : " « i « endl;
cout « "Value of i reference : " « r « endl;
d = 11.7;
cout « "Value of d : " « d « endl;
cout « "Value of d reference : " « s « endl;
return 0;
}
—----------------------------
🆔 @computeriha
—-------------------
#include <iostream>
using namespace std;
int main ()
{
// declare simple variables
int i;
double d;
// declare reference variables
int& r = i;
double& s = d;
i = 5;
cout « "Value of i : " « i « endl;
cout « "Value of i reference : " « r « endl;
d = 11.7;
cout « "Value of d : " « d « endl;
cout « "Value of d reference : " « s « endl;
return 0;
}
—----------------------------
🆔 @computeriha
Forwarded from دستیار زیر نویس و هایپر لینک
✳️ آموزش قدم به قدم برنامه نویسی وب با PHP (جلسه سوم: #php3)
🌎 دانلود از لینک زیر:
🌎 http://uploadboy.me/575hgj5clc1c/php3.pdf.html
🆔 @itfarsi
🌎 دانلود از لینک زیر:
🌎 http://uploadboy.me/575hgj5clc1c/php3.pdf.html
🆔 @itfarsi
✳️ مفهوم کلاس در cpp
—------------------—
#include <iostream>
using namespace std;
class Box
{
public:
double length; // Length of a box
double breadth; // Breadth of a box
double height; // Height of a box
};
int main( )
{
Box Box1; // Declare Box1 of type Box
Box Box2; // Declare Box2 of type Box
double volume = 0.0; // Store the volume of a box here
// box 1 specification
Box1.height = 5.0;
Box1.length = 6.0;
Box1.breadth = 7.0;
// box 2 specification
Box2.height = 10.0;
Box2.length = 12.0;
Box2.breadth = 13.0;
// volume of box 1
volume = Box1.height * Box1.length * Box1.breadth;
cout « "Volume of Box1 : " « volume «endl;
// volume of box 2
volume = Box2.height * Box2.length * Box2.breadth;
cout « "Volume of Box2 : " « volume «endl;
return 0;
}
—---------------
🆔 @computeriha
—------------------—
#include <iostream>
using namespace std;
class Box
{
public:
double length; // Length of a box
double breadth; // Breadth of a box
double height; // Height of a box
};
int main( )
{
Box Box1; // Declare Box1 of type Box
Box Box2; // Declare Box2 of type Box
double volume = 0.0; // Store the volume of a box here
// box 1 specification
Box1.height = 5.0;
Box1.length = 6.0;
Box1.breadth = 7.0;
// box 2 specification
Box2.height = 10.0;
Box2.length = 12.0;
Box2.breadth = 13.0;
// volume of box 1
volume = Box1.height * Box1.length * Box1.breadth;
cout « "Volume of Box1 : " « volume «endl;
// volume of box 2
volume = Box2.height * Box2.length * Box2.breadth;
cout « "Volume of Box2 : " « volume «endl;
return 0;
}
—---------------
🆔 @computeriha
Forwarded from دستیار زیر نویس و هایپر لینک
✳️ یک کتاب خوب برای بچه های هوش مصنوعی (#بینایی_ماشین، #شناسایی_الگو و #احتمال)
🌎 لینک دانلود:
🌎 http://uploadboy.me/5019s4hqjc1h/@computeriha_Machine_Learning-_A_Probabilistic_Perspective.pdf.html
🆔 @booksharing
🆔 @computeriha
🌎 لینک دانلود:
🌎 http://uploadboy.me/5019s4hqjc1h/@computeriha_Machine_Learning-_A_Probabilistic_Perspective.pdf.html
🆔 @booksharing
🆔 @computeriha