
Concept explainers
Using my below code I am trying to create a loop to print the first row of the array on one line on cout, create a loop to print the first column of the array on one line on cout and create a loop to print the first seven rows of the array, each on a single line.
#include <iostream>
using namespace std;
int main()
{
// The following chunk just initializes the rows and columns:
int row = 12;
int col = 15;
int someArray[row][col];
for (row = 0; row < 12; row++)
for (col = 0; col < 15; col++)
someArray[row][col] = col;
// Trying to write a loop to print the first row of the array on one line on cout.
cout << "\nFirst Row:\n";
// TO DO
// Write a loop to print the first column of the array on one line on cout.
cout << "\n\nFirst Column:\n";
// TO DO
// Write a loop to print the first seven rows of the array, each on a single line.
cout << "\n\nFirst 7 Rows:\n";
// TO DO
cout << endl;
return 0;
}

Trending nowThis is a popular solution!
Step by stepSolved in 3 steps with 1 images

- Programming language: Processing from Java Question attached as photo Topic: Use of Patial- Full Arraysarrow_forwardI want this work be done in C# Visual studio. Given the following: private void btnRun_Click(object sender, EventArgs e){//Your code goes here } Code the statement(s) that will create a integer array of 5 elements and initialize the array with the following values in one line of code 10, 15, 20, 25, and 30. Then using a for loop alter the values in each element of the array by adding 5 to it. So after the for loop runs the values of the array should be 15, 20, 25, 30, and 35.arrow_forwardPlease help guide me in the direction what I am doing wrong. I am in the process of the code but it reached an error please guide me where I need to change before I continue the rest of the code. That is why it will be incomplete #include "stdafx.h"#include <iostream> #include <limits>#include <cstdlib>#include <array>#include <ctime>#include <string>#include <vector>#include <cctype>#include <iterator>#include <algorithm>#include <cmath>#include<windows.h>#include <conio.h> using namespace std; double donationamount[50];string fullname[50];int departmentdonation[50]; struct donorinfo{ vector<string>donor_name[50];vector<double>donor_amount[50];vector<double>department_donation[50];} dvariable; void inputdonor(donorinfo *);void displaydonor(donorinfo *);void editdonor(donorinfo *);void displayorganization(donorinfo *); int main(){ int index; donorinfo Donors[50]; int choice;const int…arrow_forward
- Need help completing this coding assignmentdown below: // This program will read in prices and store them into a two-dimensional array. // It will print those prices in a table form. // PLACE YOUR NAME HERE #include <iostream> #include <iomanip> using namespace std; const int MAXROWS = 10; const int MAXCOLS = 10; typedef float PriceType[MAXROWS][MAXCOLS]; // creates a new data type // of a 2D array of floats void getPrices(PriceType, int&, int&); // gets the prices into the array void printPrices(PriceType, int, int); // prints data as a table int main() { int rowsUsed; // holds the number of rows used int colsUsed; // holds the number of columns used PriceType priceTable; // a 2D array holding the prices getPrices(priceTable, rowsUsed, colsUsed); // calls getPrices to fill the array printPrices(priceTable, rowsUsed, colsUsed); // calls printPrices to display array return 0; } //******************************************************************************* //…arrow_forwardProblem Description - JAVA PROGRAMMING Use a Two-dimensional (3x3) array to solve the following problem: Write an application that inputs nine numbers, each of which is between 1 and 10, inclusive. Display the array after the user inputs each value. Rotate/flip the array by changing places. Make the rows columns and vice versa. You have to move the elements to their new locations. Remember to validate the input and display an error message if the user inputs invalid data. Documentation and the screenshot(s) of the results. Example: 1 2 3 4 5 6 7 8 9 the result will be : 1 4 7 2 5 8 3 6 9arrow_forwardWhat is wrong with my code? use the IN300_Dataset2.txt file (https://kapextmediassl-a.akamaihd.net/IST/IN300/IN300_1905A/IN300_Dataset2.txt) Write a Java program that: A. Reads the text file. B. Using that data, create a two-dimensional array that is 2,500 rows by 100 columns. C. Slice the two-dimensional array using a starting column index of 2 and an ending column index of 5. Print the results of the arrays and slice. import java.io.BufferedReader; import java.io.FileNotFoundException; import java.io.FileReader; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.io.File; import java.util.Scanner; import java.lang.Float; public class Main { public static void main(String args[]) { File file = new File("/Users/ahmedgasim/Desktop/IN300_Dataset2.txt"); String line; ArrayList<Long> data = new ArrayList<Long>(); try (BufferedReader br = new BufferedReader(new FileReader(file))) { while((line = br.readLine())) ! = null) {…arrow_forward
- JAVA PROGRAM Lab #2. Chapter 7. PC #11. Array Operations (Page 491) Write a program that accepts a file name from command line, then initializes an array with test data using that text file as an input. The file should contain floating point numbers (use double data type). The program should also have the following methods: * getTotal. This method should accept a one-dimensional array as its argument and return the total of the values in the array. * getAverage. This method should accept a one-dimensional array as its argument and return the average of the values in the array. * getHighest. This method should accept a one-dimensional array as its argument and return the highest value in the array. * getLowest. This method should accept a one-dimensional array as its argument and return the lowest value in the array. This part of the program is not correct. There should be no Scanner. You should read the file name from the command line.Scanner scanner = new…arrow_forwardJAVA PROGRAM Lab #2. Chapter 7. PC #11. Array Operations (Page 491) Write a program that accepts a file name from command line, then initializes an array with test data using that text file as an input. The file should contain floating point numbers (use double data type). The program should also have the following methods: * getTotal. This method should accept a one-dimensional array as its argument and return the total of the values in the array. * getAverage. This method should accept a one-dimensional array as its argument and return the average of the values in the array. * getHighest. This method should accept a one-dimensional array as its argument and return the highest value in the array. * getLowest. This method should accept a one-dimensional array as its argument and return the lowest value in the array. PLEASE FIX AND MODIFY THIS JAVA PROGRAM. THIS PROGRAM DOES NOT WORK IN HYPERGERADE. IT ONLY PASSSES 2 OUT OF 4 TEST CASES. I NEED IT TO PASS 4 OUT OF 4…arrow_forwardThis is for r Regarding a for loop, which of the following is not true? The for keyword must be followed by parentheses. Following the for statement, the code to be executed is recognized by it being indented. The number of times the loop will be performed is determined by the length of the vector passed to the for keyword. The for loop can contain other for loops.arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





