online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
/****************************************************************************** Online Java Compiler. Code, Compile, Run and Debug java program online. Write your code in this editor and press "Run" button to execute it. *******************************************************************************/ // هنا قمنا بتضمن حزمة الجافا المسؤولة على المدخلات import java.util.Scanner; public class Main { public static void main(String[] args) { // هنا قمنا بإنشاء كانت من الكلاس scanner Scanner scanner = new Scanner(System.in); // هنا قمنا بإنشاء متغير من نوع int و سنستقبل فيه العدد المدخل int input; // هنا قمنا بعرض رسالة توحي بإدخال رقم من الكيبورد System.out.println("أدخل سعر المنتج !"); // هنا قمنا بعمل حلقة while لتكرار العملية مادام الرقم المدخل موجب while ((input = scanner.nextInt()) > 0) { // هنا قمنا بعرض السعر بعد الخصم و قمنا بعمل فورمات حتى يأخذ فقط رقمين بعد الفاصلة System.out.format("السعر بعد الخصم = %.2f\n", input * 0.8); System.out.println("أدخل منتج آخر !"); } // هنا قمنا بعرض رسالة توحي بإدخال رقم سالب System.out.println("لقد قمت بإخال رقم سالب"); } }

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue