ar
Feedback
نصائح و استشارات برمجية

نصائح و استشارات برمجية

الذهاب إلى القناة على Telegram

• نصائح واستشارات برمجية متعلقة باسئلة تم طرحها • لطرح استفسار او سؤال: @m4md24

إظهار المزيد
1 443
المشتركون
-224 ساعات
-77 أيام
+530 أيام
أرشيف المشاركات
sticker.webp0.07 KB

System.out.print("""
و عليكم السلام و رحمة الله و بركاته
""");
• شوف في اليوتيوب مشاريع حسب التقنية اللي تستخدمها 🤝🏻

السلام عليكم ورحمة الله وبركاته ممكن افكار لمشاريع سمنار بال oop بلغة c++ يعني مشاريع بسيطة مو مشاريع تخرج

sticker.webp0.07 KB

لا

اكيد طبعا

مافيه امكانيه على الويندوز؟

يخوان تطوير تطبيقات الايفون لازم يكون على جهاز ماك؟

sticker.webp0.07 KB

الحل لدا الموضوع انك تحلي مسائل و تتعلمي و تشوفي المسائل بتتحل ازاي

أنا فاهمه كل حاجه خدتها بس لما بيقول أكتب برنامج مش بعرف

• بتراجعي على الحاجات اللي كتبتيها والمسائل اللي حليتيها و حطيتي عليها تعليقات • او بتراجعي على شرح الفيديوهات

أو أنا لو عندي امتحان ف c++ومش مظبطة الدنيا خالص اذاكر منين لحد forعشان اعرف احل البرنامج اللي هيجيلي

sticker.webp0.07 KB

+2
image_2023-11-16_18-51-03.png0.48 KB

Here are the solutions to your questions: 1. Program in Java to display the value of a number before and after post-increment: public class PostIncrementExample { public static void main(String[] args) { int num = 5; System.out.println("Original value of num: " + num); System.out.println("Value of num after post-increment: " + (num++)); System.out.println("Value of num after post-increment: " + num); } } 2. Program in Java to multiply a number by 3 using the result operator and display the result: public class ResultOperatorExample { public static void main(String[] args) { int num = 4; num *= 3; // This is equivalent to: num = num * 3 System.out.println("Result of multiplying the number by 3: " + num); } } 3. Program in Java to use the Math functions to round a user-given decimal number to the nearest whole number: import java.util.Scanner; public class RoundToNearestWholeNumber { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.print("Enter a decimal number: "); double decimalNumber = scanner.nextDouble(); long roundedNumber = Math.round(decimalNumber); System.out.println("Rounded number to the nearest whole number: " + roundedNumber); } } Please try running these programs and let me know if you have any further questions or need any additional assistance!

sticker.webp0.07 KB

• يا غالي، لو مثلا امر واحد عادي لو متحطش اقواس، زي كدا ⬇️
if (1 <= 4) cout << "Done";
• اما لو اكتر من امر فا لازم تحط اقواس، زي كدا ⬇️
if(1 <= 4) {
cout << "Done1";
cout << "Done2";
}
• مش شرط تعمل دا لل if بس، هو في الاصل ينفع لاي موضوع اخر زي for و while و غيرهم

يعني لو في else If أكثر من وحدة لازم احطها لو لوب ...

sticker.webp0.07 KB

نصائح و استشارات برمجية - إحصائيات وتحليلات قناة تيليجرام @softwareconsulting