نصائح و استشارات برمجية
1.45K subscribers
546 photos
10 videos
83 files
397 links
• نصائح واستشارات برمجية متعلقة باسئلة تم طرحها

• لطرح استفسار او سؤال: @m4md24
Download Telegram
اقصد من ناحية سوق العمل
تعلمها يكفي لسوق العمل
بدون تعلم لغات اخرى
This media is not supported in your browser
VIEW IN TELEGRAM
أقدر اتدرب ع cpp منين
يعني اجيب أسئلة و احلها ك problem solving
نصائح و استشارات برمجية
أقدر اتدرب ع cpp منين يعني اجيب أسئلة و احلها ك problem solving
• Codeforces (
- assiut sheet
- problem sets
)

• LeetCode (
- top interview 150
- problem sets
)

• HackerRank

• TopCoder

• AtCoder

• HackerEarth

• Codewars

• W3Schools (How to)

• W3Resource

• Satr (Solve projects with yourself)

• CoderHub
This media is not supported in your browser
VIEW IN TELEGRAM
متعرفش اى برنامج باوربوينت غير ال اسمه باوربوينت دة
This media is not supported in your browser
VIEW IN TELEGRAM
محتاجة نسخة من الاندرويد استديو تكون قديمة
This media is not supported in your browser
VIEW IN TELEGRAM
public class CircleArea {

public static void main(String[] args) {

double radius;
double pi = 3.14159;

Scanner input = new Scanner(System.in);

System.out.println("Enter radius : ");
radius = input.nextDouble();

double area = pi * radius * radius;

System.out.println("The area is : " + area);

input.close();
}
}
ممكن اعرف اي الايرور
نصائح و استشارات برمجية
ممكن اعرف اي الايرور
• هو هيديك خطأ لانك ناسي تستدعي المكتبة، دا الكود بعد التعديل ↓

import java.util.Scanner;

public class CircleArea {

public static void main(String[] args) {

double radius;
double pi = 3.14159;

Scanner input = new Scanner(System.in);

System.out.println("Enter radius : ");
radius = input.nextDouble();

double area = pi * radius * radius;

System.out.println("The area is : " + area);

input.close();
}
}
This media is not supported in your browser
VIEW IN TELEGRAM
الرن مطلع 21