کامپیوتری ها – Telegram
کامپیوتری ها
3.44K subscribers
4.41K photos
496 videos
476 files
467 links
Download Telegram
#لینک_دانلود_مستقیم

کسی لینک دانلود مستقیم انگیزه برای ادامه زندگی نداره؟

»پوریا مقدس«

🆔 @computeriha
کامپیوتری ها
✳️ C++ Exception Handling —------------------------ #include <iostream> using namespace std; double division(int a, int b) { if( b == 0 ) { throw "Division by zero condition!"; } return (a/b); } int main () { int x = 50; int y =…
1⃣0⃣ Define New Exceptions in c++
—-------------------
#include <iostream>
#include <exception>
using namespace std;

struct MyException : public exception
{
const char * what () const throw ()
{
return "C++ Exception";
}
};

int main()
{
try
{
throw MyException();
}
catch(MyException& e)
{
std::cout « "MyException caught" « std::endl;
std::cout « e.what() « std::endl;
}
catch(std::exception& e)
{
//Other errors
}
}
—------------------
0⃣1⃣ @computeriha
1⃣0⃣ Learning To Program With #Visual_Basic And .NET Gadgeteer

🌎 دانلود مستقیم 👇👇👇

0⃣1⃣ @computeriha
✳️آخرین آپدیت جدید اینستاگرام
Inestgram 8.5.0

🌎 دانلود مستقیم 👇👇👇

🆔 https://telegram.me/joinchat/BMWizTugT5Qvr54A8-PPXA
✳️20 ترفند جستجوگر گوگل که دانستن آنها به شما کمک خواهد کرد!


🌎 http://digiro.ir/google-20-and-best-tips/

🆔 @ITfarsi
1⃣0⃣ تابع نشان دادن زمان در پایتون و بدست آوردن ثانیه، دقیقه و ساعت

ShowCurrentTime.py
—----------------------------
import time

currentTime = time.time() # Get current time

# Obtain the total seconds since midnight, Jan 1, 1970
totalSeconds = int(currentTime)

# Get the current second
currentSecond = totalSeconds % 60

# Obtain the total minutes
totalMinutes = totalSeconds // 60

# Compute the current minute in the hour
currentMinute = totalMinutes % 60

# Obtain the total hours
totalHours = totalMinutes // 60

# Compute the current hour
currentHour = totalHours % 24

# Display results
print("Current time is", currentHour, ":", currentMinute, ":", currentSecond, "GMT")

—------------------—
0⃣1⃣ @computeriha
#آیتیخبر

✳️امن سازی فعالیتهای کاربران در شبکه‌های اجتماعی کلید خورد

🔹سازمان فناوری اطلاعات در راستای حفظ حریم خصوصی کاربران در فضای مجازی کشور، طرح امن‌سازی فعالیت در شبکه‌های اجتماعی را کلید زد./فرارو

🆔 @ITfarsi
1⃣0⃣ آموزش جاوا
#java2

🌎 دانلود مستقیم
1⃣0⃣ @computeriha
👇👇👇
✳️ انویدیا کارت گرافیک GeForce GTX 1060 را معرفی کرد



🌎 http://digiro.ir/nvidia-announces-geforce-gtx-1060-graphics-card/

🆔 @ITfarsi
✳️ آموزش قدم به قدم برنامه نویسی وب با PHP (جلسه شانزدهم: #php17)

🌎 دانلود مستقیم

🆔 @computeriha
👇👇👇
0⃣1⃣ C++ Dynamic Memory

#include <iostream>
using namespace std;

int main ()
{
double* pvalue = NULL; // Pointer initialized with null
pvalue = new double; // Request memory for the variable

*pvalue = 29494.99; // Store value at allocated address
cout « "Value of pvalue : " « *pvalue « endl;

delete pvalue; // free up the memory.

return 0;
}

1⃣0⃣ @computeriha
0⃣1⃣ کتاب یادگیری ماشین تام میشل

#ارشد #دکتری

🌍 دانلود مستقیم 👇👇👇


1⃣0⃣ @computeriha
This media is not supported in your browser
VIEW IN TELEGRAM
0⃣1⃣ تقلید هوش مصنوعی از نوع راه رفتن انسان

📌 این ربات برای راه رفتن، ابتدا پاشنه پا را بر زمین می‌گذارد و با انگشتان پا، خود را به جلو می‌راند. / خبرفوری

1⃣0⃣ @computeriha
This media is not supported in your browser
VIEW IN TELEGRAM
✳️ تست جالب از قرار دادن آیفون 6 اس و گلکسی اس 7 در آب جوش


🆔 @ITfarsi