how to make the it all work later...but in the mean time how can i get this to display this? Note it has to be made using as a console program. The "Description" and "Cost/ib" collums will be referenced through use of a header file. all else is done by user input and calculations.
I'm having trouble trying to get my loop program to display multiples of 4 in rows and columns. My objective is to print multiples of 4 that are less than 100 in a 4 by 4 format.
So far when I write the code I get 4 8 12 16 20 .... 96 all on the same line.
This is what I expect the code to look like if done correctly.
How i draw such a thing in .TXT file using file handling. This output must be in columns and rows and in well arranged form.
No. Name Roll No. Physic Math Compuer Science Islamiyat Pak Studies Average Grade 1 Student Name 12345 50 60 70 76 90 81 A 2 Student Name 12345 55 52 50 80 58 55 C 3 Student Name 12345 85 66 90 88 77 75 B 4 Student Name 12345 40 70 91 45 56 85 A 5 Student Name 12345 30 80 80 55 93 45 D
Here's my code for adding the rows and columns. My problem is that my program displays an incorrect output.
main() { int a[20][20],r,c,y,x,sum=0,rn,cn,cs=0,rs=0; cout<<"Enter number of columns : "; cin>>cn;
[Code] .....
This should be the output Enter number of columns: 4 Enter number of rows: 3 Enter twelve numbers: 9 2 3 4 2 3 1 2 5 6 7 8
The numbers are: 9234 2312 5678 Sum of number 1 column is: 16 Sum of number 2 column is: 11 Sum of number 3 column is: 11 Sum of number 4 column is: 14 Sum of number 1 row is: 18 Sum of number 2 row is: 8 Sum of number 3 row is: 26
Im using apmatrix and im inputting values into a 4 by 4 matrix and im getting all these errors that have nothing to do with my cpp file so im guessing its apmatrixies fault. Also I put in the cpp and header file of both apmatrix and apvector into my project folder. Heres my code:
error C1189: #error : The C++ Standard Library forbids macroizing keywords. Enable warning C4005 to find the forbidden macro.c:program filesmicrosoft visual studio 11.0vcincludexkeycheck.h2421TheMatrix
4IntelliSense: identifier "EMIT" is undefinedc:Program FilesMicrosoft Visual Studio 11.0VCincludeyvals.h4911TheMatrix
I am trying to sort a Report Table by which the user can enter any column or row number and output the results. And also sort by names as well. And from my code
#include "stdafx.h" #include<iostream> #include <string> #include<iomanip> using namespace std; #include <stdlib.h> /* srand, rand */ #include <time.h> /* time */
[Code] .....
I know I need to start somewhere with a void function and put in a selection sort.
I have a N queens (actually 8 queens to be specific) program that accepts the numbers in order by row. I need to get it so it accepts the numbers in order by column. At first glance I thought it was just one space different, but it turned out not to be and how to get the one space difference in there. My current code (which I'm aware isn't doing the column accepting right) is:
Code:
#include <iostream> using namespace std; int main() { int board[8]; cout << "Enter the columns containing queens, in order by column: "; for(int i = 0; i < 8; ++i) { cin >> board[i];
[Code]...
What the output should be:
Code:
Enter the rows containing queens, in order by column:
I am writing a program that deals with 2d arrays. The program inputs the number of rows and columns and asks for the entries. When the program run and compiles it works perfectly until it outputs then it gives me a warning.
Here is my code:
#include <iostream> #include <cstdlib> using namespace std; int main() { int row1=0,col1=0,i,j; //int a[row1][col1]; int** a= new int*[row1];
[Code]...
I am learning how to do this before I can move on so it can read a text file of numbers.
Also I am having problems with ////delete [] a[];///// I took it out because it made my code compile and run but when I add it in, it gives me an error:
matrixtesting.cpp|56|error: expected primary-expression before ']' token|
I know this expression is suppose to deallocate the array.
I want to select three columns from my text file i.e. Empl No, Start Date and Created Date. After selecting this, I want to insert the data into a database.
I have attached a copy of the text file.
I have the following code so far:
if (File.Exists(filename)) { string[] lines = File.ReadAllLines(filename); for (int y = 0; y < lines.Length; y++) { Console.WriteLine(lines[y].ToString()); }
How do i select specific details for each employee
I am trying to iterate a matrix in order to exchange rows and columns element by element. Although the function that exchanges the rows has come out well, i don't seem to figure out how to do the same on columns.The columns switch for a matrix like
You will write a program that uses a multidimensional array having 3 rows and 8 columns and sorts each of the rows using both a bubble sort and a selection sort.
You must declare the array inside of main. You will have a for loop containing the calls to bubbleSort and selectionSort. You need to pass into function bubbleSort and selectionSort the following: 1) each column of the multidimensional array, 2) the size of the column, and 3) a particular row number of the multidimensional array to be used for printing out the "pass" shown on the following pages.
I keep getting an error that the identifier for bubbleSort and selectionSort is not found. (Error C3861)
Also, I feel like I'm missing something in int main() to get it to sort properly.
Code: # include <iostream> using namespace std; int main() { const int SIZE1 = 3; const int SIZE2 = 8; int arr [SIZE1][SIZE2] = { { 105, 102, 107, 103, 106, 100, 104, 101 },
I have this code it sums the rows now I need it so it would sum all the columns in the output and put it in row 8 of the outcome. How would I go about doing that?
Code:
#include Code: "stdio.h" #include "stdafx.h" int main(void) { int number[8][7]; }
I have this code down except I'm very confused how to make the output come out in 3 columns.
#include<iostream> #include<fstream> using namespace std; int main() { int i, j, n, flag = 0, prime_number = 0, temp; cout << "Enter first prime numbers that will be used or -1 to end:" << endl; [Code] ......
My output right now is:
Enter first prime numbers that will be used or -1 to end: 20 Twin Prime Number : (3,5) Twin Prime Number : (5,7) Twin Prime Number : (11,13) Twin Prime Number : (17,19)
I want to swap the value of two rows in matrix among themselves, the index of rows are user defined.
void swapRows(int matrix[M][N], int m, int n, unsigned short R1, unsigned short R2) { for (int i=0; i<m; i++) { for (int j=0; j<n; j++) { //dunno what to put in here
I'm working with arrays and I get them column by column and need to print them. I as there a way to print in columns?
For example: I produce an array of A, B and C from a loop and then need to print them in one column and the go to the next column ....
so in the end I shall have an output like this:
A E B F C G D h ... ...
My arrays are too long (over 50K) so I cant just store the arrays and then print them. I need to produce each column array, print them and delete it and go to the next column.
I have a basic question regarding 2d vectors. The following code makes a 2d vector and fills it with a matrix of integers. The vector tempVector3 gets added as a new row to the matrix. But what if I wanted to add the tempVector3 as a new column instead. How would this be done in the simplest way?
#include<iostream> #include<vector> int main(){ std::vector<std::vector<int>> numbers; std::vector<int> tempVector1; tempVector1.push_back(2);
I have a file that can range from 100 rows to 10000+ that is comma delimited with 8 columns. The first 32 rows (also comma delimited) will always be ignored (geographical header information). I will be wanting the data from column2 and column3.
For this I believe I would need (2) For Loops as such:
I have this code down except I'm very confused how to make the output come out in 3 columns.
#include<iostream> #include<fstream> using namespace std; int main() { int i, j, n, flag = 0, prime_number = 0, temp; cout << "Enter first prime numbers that will be used or -1 to end:" << endl; cin >> n;
[Code]...
My output right now is:
Enter first prime numbers that will be used or -1 to end: 20
Twin Prime Number : (3,5) Twin Prime Number : (5,7) Twin Prime Number : (11,13) Twin Prime Number : (17,19)
But what I want is: 1. {3;5} 2.{5,7} 3.{11,13} 4. {17,19}
Ok so I'm working with a windows form in C# and sql server database. I'm trying to do something like what is in the image below using a datagridview. My question is how do I 1) ensure only 1 checkbox is checked per row 2) do math that 'links' a checkbox column with another column, and add the totals. I understand that asp.net and web forms would be easier but we have not reached that point in the course yet. Would this be on the right track:
foreach (DataGridViewRow row in dataGridView.Rows) { if ((bool)(row.Cells["Checkbox"]).Value || (CheckState)row.Cells["Checkbox"].Value == CheckState.Checked) { // Do something } } Attached image(s)
Enter first prime numbers that will be used or -1 to end: 20 Twin Prime Number : (3,5) Twin Prime Number : (5,7) Twin Prime Number : (11,13) Twin Prime Number : (17,19)
But what I want is:
1. {3;5} 2.{5,7} 3.{11,13}
4. {17,19}
else if (i - prime_number == 2) { cout << "{" << prime_number << ";" << i << "}" << endl << endl; prime_number = i; }
Code: int a[6]={1,3,5,8,10,12}; int b[3]={3,5,9}; int c[6]={0}; if a is equal to ANY of the data in b, then c= a*2 if a isn't equal to any of the data in b, then c=a.
Here is the answer I want
Code: c[6]={1,6,10,8,10,12}
I tried using two for loop, but it isn't correct.....
Code: int a[6]={1,3,5,8,10,12}; int b[3]={3,5,9}; int c[6]={0};