150 likes | 268 Views
البرمجة الكينونية بلغة جافا 1294. ا.محمد شبير. الوحدة الثالثة. تدريبات Exercises. While. while(Boolean_expression) { //Statements }. The do...while Loop:. do { //Statements }while(Boolean_expression);. The for Loop:. for(initialization; Boolean_expression; update) {
E N D
البرمجة الكينونية بلغة جافا1294 ا.محمد شبير
الوحدة الثالثة تدريبات Exercises
While • while(Boolean_expression) • { • //Statements • }
The do...while Loop: • do • { • //Statements • }while(Boolean_expression);
The for Loop: • for(initialization; Boolean_expression; update) • { • //Statements • }