- Create a folder called pgm1
- In your folder pgm1, USING A WINDOWS EDITOR, create a java
program named
Your lastName, firstLetterOfYourFirstName, pgm1W.java that will do
the following:
Start here
- From your main method call a new method named:
processArray
- In the processArray method, create one 10x10 two dimensions array
named twoDarray
- In each index of your twoDarray, load the multiplication of its
corresponding xy locations
- Using the printf java command display, in a perfect square, the
even values found
in your array's locations
In the square locations where the values are nor even, display 2
blank spaces
import java.util.*;
public class easy{
public static void process_array()
{
int TwoDarray[][]= new int[10][10];
int a;
for(int i= 0;i<10;i++) {
for(int j=0;j<10;j++) {
a = i*j;
TwoDarray[i][j] = a;
if(a%2 == 0 && a>0)
System.out.printf(" %-2d ",a);
else
System.out.printf(" -- ");
}
System.out.println("\n");
}
}
public static void main(String[] args) {
process_array();
}
}
output:-

- Create a folder called pgm1 - In your folder pgm1, USING A WINDOWS EDITOR, create...
In your Windows VM do the following: 1) Create a folder called pgm1 2) Move into the pgm1 folder 3) Using a Windows editor ONLY create a Java program named: your last name + first letter of your first name + windowsPgm1.java example robinsonMwindowsPgm1.java In the above program, from the main method call a new method named: processWindows passing your name, the numbers 3.99, 3.50, and 2 4) At the processWindows method, using System.out.printf display the accepted data, in two...
Create a text file named “file1.txt” (by use of the notepad editor in Windows for instance) containing the following integer values, one per line: 12 5 13 56 90 52 82 52 Write a Java program that reads these values from the file and displays their sum on the screen.
CIST 2371 Introduction to Java Unit 04 Lab Due Date: ________ Create a folder called Unit04 and put all your source files in this folder. You will create a UML diagram and two Java class files and that implements the classes in the UML diagram. Diagram Create a UML diagram that shows an Account class and an AccountTester class. The Account class holds the following data as Strings: account Number, type of account, card number and expire date. Include getter...
Using Kali Linux, the Windows Linux Sub-System, or another Debian based Linux distribution, perform the following tasks based on the Linux Fundamentals lecture. For this lab, take screenshots for all major steps completed to illustrate that each task was successfully completed the same method as would be used for other labs). Tasks: 1. Create a new user named Billy Bob using the command linter face 2. Add Billy Bob to the sudoers group 3. Update and upgrade your Linux distribution...
Exercise 1: Create a file by using any word processing program or text editor. Write an application that displays the file's name, size, and time of last modification. Save the file as FileStatistics.java. Exercise 2: Create a file that contains your favorite movie quote. Use a text editor, such as Notepad, and save the file as Quote.txt. Copy the file contents and paste them into a word processing program, such as Word. Save the file as Quote.doc. Write an application...
Create a program using Visual Studio 2017 called dataExercise.c that declares the following variables and displays their values: 1. Declare a character variable with value 'a', and display the character using printf with a %c format. Then add a second printf that displays the character with a %d format. 2. Declare a short int variable with a value set to the maximum value of a short int (the maximum value for whatever machine I happen to use to grade your...
Exercise: (2) Create a class called Dog containing two Strings: name and says. In main(), create two dog objects with names “spot” (who says, “Ruff!”) and “scruffy” (who says, “Wurf!”). Then display their names and what they say. Be sure to use setter and getter methods to assign(set) and retrieve(get) values for both Strings name and says. Your Task: Create the program using Netbeans and easyUML (i.e: Open a project in NetBeans then create the classes, attributes, and methods in...
Create a program (in C, not C++) called lab3.c that declares the following variables and displays their values: Declare a character variable with value 'a', and display the character using printf with %c format. Then add a second printf that displays the character with a %d format. Declare a short int variable with a value set to the maximum value of a short int (the maximum value for whatever machine I happen to use to grade your assignment - so...
Write a python program and pseudocode The Program Using Windows Notepad (or similar program), create a file called Numbers.txt in your the same folder as your Python program. This file should contain a list on floating point numbers, one on each line. The number should be greater than zero but less than one million. Your program should read the following and display: The number of numbers in the file (i.e. count them) (counter) The maximum number in the file (maximum)...
Please include comments in java Create a command line program that can be used for computer inventory purposes Create a super class that will store the following data: CPU speed Amount of RAM Hard Disk size Operating System Allow the user to enter data using any units of measurement they desire (i.e. - 500GB or 1TB for hard disk size). Create a class that inherits from the previous class and stores information for a Windows based computer. Store the following...