Encrypting your link and protect the link from viruses, malware, thief, etc! Made your link safe to visit.

Question:


1. Using the NetBeans IDE make a new project to modify the SmallO.java program (file attached) so that it now repeats the loop five times and then stops.


2. Using the IDE make a new project to modify the SmallO.java program (file attached) so that integers instead of Strings are entered by the user.

 

3. Using the IDE make a new project to modify the SmallO.java program (file attached) so that it only loops until the number -999 is entered by the user.

NOTE: SmallO.java file image attached


Answer:


Step 1

The original program is as follows.

 

ORIGINAL PROGRAM

import java.util.Scanner;

public class SmallIO
{
 public static void main(String[] args) {
     
     Scanner keyboard = new Scanner(System.in);
     String a = "";   //initializing to empty String
     
     //infinite loop, use Ctrl-C (from command prompt) to quit
    while(true)
     { 
         System.out.println("Enter a line: ");
         a = keyboard.nextLine();
         System.out.println("Your line: "+ a);
         System.out.println();
     }   //loop ends
 }   // main ends
}   // class ends

Step 2

1. Using the NetBeans IDE make a new project to modify the SmallIO.java program (file attached) so that it now repeats the loop five times and then stops.

 

The java program is as follows.

 

PROGRAM

import java.util.*;
import java.lang.*;

public class SmallIO
{
 public static void main(String[] args) {
     
     Scanner keyboard = new Scanner(System.in);
     String a = "";   //initializing to empty String
     int loop=0;     //variable to control loop execution
     
     //loop executes 5 times
     while(loop<5)
     {
         System.out.println("Enter a line: ");
         a = keyboard.nextLine();
         System.out.println("Your line: "+ a);
         System.out.println();
         
         loop++;     //loop variable incremented
     }   //loop ends
 }   // main ends
}   // class ends

Step 3

2. Using the IDE make a new project to modify the SmallIO.java program (file attached) so that integers instead of Strings are entered by the user.

 

The java program is as follows.

 

PROGRAM

import java.util.*;
import java.lang.*;

public class SmallIO
{
 public static void main(String[] args) {
     
     Scanner keyboard = new Scanner(System.in);
     int n;   //declaring an integer variable
    
     
     //infinite loop, use Ctrl-C (from command prompt) to quit
     while(true)
     {
         System.out.println("Enter a number: ");
         n = keyboard.nextInt();
         System.out.println("Your number: "+ n);
         System.out.println();
         
     }   //loop ends
 }   // main ends
}   // class ends

Step 4

3. Using the IDE make a new project to modify the SmallIO.java program (file attached) so that it only loops until the number -999 is entered by the user.

 

The java program is as follows.

 

PROGRAM

import java.util.*;
import java.lang.*;

 

public class SmallIO
{
 public static void main(String[] args) {
     
     Scanner keyboard = new Scanner(System.in);
     String a = "";   //initializing to empty String
     
     int n=1;    //variable to test if -999 is entered
     
     //infinite loop, use Ctrl-C (from command prompt) to quit
    while(n!=-999)
     { 
         System.out.println("Enter a line: ");
         a = keyboard.nextLine();
         System.out.println("Your line: "+ a);
         System.out.println();
       
         System.out.println("Enter -999 to quit. Enter any other number to continue.");
         n = keyboard.nextInt();
         if(n==-999)
         {
             System.out.println("Exiting."); break;
         }
     }   //loop ends
 }   // main ends
}   // class ends

ST

Search This Blog

Labels

Report Abuse

Question: A 250-V, 4-pole, wave-wound d.c. series motor has 782 conductors on itsarmature. It has armature and series field resistance of 0.75 ohm. The motor takesa current of 40 A. Estimate its speed and gross torque developed if it has a flux per pole of 25 mWb Answer: Step 1 Mechanical Engineering homework question answer, step 1, image 1 Mechanical Engineering homework question answer, step 1, image 2 Step 2 Mechanical Engineering homework question answer, step 2, image 1 Step 3 Mechanical Engineering homework question answer, step 3, image 1

Question: A 250-V, 4-pole, wave-wound d.c. series motor has 782 conductors on itsarmature. It has armature and series field resistance of 0.75 ohm. The motor takesa current of 40 A. Estimate its speed and gross torque developed if it has a flux per pole of 25 mWb Answer: Step 1 Step 2 Step 3

QUESTION 6 (a) The bar shown in Figure Q2(a) is subjected to tensile load of 150 Kn. If the stress in the middle portions is limited to 160 N/mm², determine the diameter of the middle portion. Find also the length of the middle portion if the total elongation of the bar is to be 0.25 mm. E E = 2.0 + 105N/mm². (12 marks) 150 KN 10 cm DIA 10 cm DIA 150 KN 45 cm Figure Q6(a) (b) A brass bar, having cross-section area of 900 mm², is subjected to axial forces as shown in Figure Q2(b), in which AB = 0.6 m, BC = 0.8 m, and CD = 1.0 m. Find the total elongation of the bar. E = 1.0 + 105N/mm2 . (8 marks) Page 4 of 5 B D 40 KN 70 KN 20 KN 10 KN Figure Q6(b) (TOTAL = 20 MARKS)

  Question: Show transcribed image text Answer:

Contributors