Results 1 to 4 of 4
-
14-01-2008, 02:42 AM #1
Incredible Input Incredible Output (ProgLang-C++)(Comp-TC++)
Here're two progs to transpose and mxn matrix and reverse the same.
Code://TO REVERSE A 3X4 MATRIX.// #include<iostream.h> #include<conio.h> #include<iomanip.h> void main() { clrscr(); int a[3][4]; for(char i=0;i<3;++i) { for(char j=0;j<4;++j) cin>>a[i][j]; } for(i=2;i>=0;--i) { for(char j=3;j>=0;--j) cout<<setw(2)<<a[i][j]<<" "; cout<<endl; } getch(); }Give the Input :Code://TO TRANSPOSE A MXN MATRIX.// #include<iostream.h> #include<conio.h> #include<iomanip.h> void main() { clrscr(); int a[3][4]; cout<<"ENTER THE ELEMENTS OF ARRAY : "; for(char i=0;i<3;++i) { for(char j=0;j<4;++j) cin>>a[i][j]; } for(i=0;i<4;++i) { for(char j=0;j<3;++j) cout<<setw(3)<<a[j][i]<<" "; cout<<endl; } getch(); }
01 02 03 04
05 06 07 08
00 00 00 00
You'll get the Output :
Case I:
00 00 00 08
00 07 06 05
04 03 02 01
Case II:
01 05 08
02 06 00
03 07 00
04 00 00
What is making the output go wrong ??
-
16-01-2008, 12:44 PM #2
Re: Incredible Input Incredible Output (ProgLang-C++)(Comp-TC++)
Am getting both right, but using a normal int counter set (i,j) rather than a char one.
Input:
Output (Reverse):Code:01 02 03 04 05 06 07 08 00 00 00 00
Output (Transpose):Code:0 0 0 0 8 7 6 5 4 3 2 1
Code:1 5 0 2 6 0 3 7 0 4 8 0
Harsh J
www.harshj.com
-
20-01-2008, 06:47 PM #3
Re: Incredible Input Incredible Output (ProgLang-C++)(Comp-TC++)
So, just because of the use of char(i,j) set, the results are altering ?
-
20-01-2008, 07:55 PM #4
Re: Incredible Input Incredible Output (ProgLang-C++)(Comp-TC++)
Just tried it with char (i,j) too, but it does the same thing, my output is all right.
Maybe you need to add char to both the counter usage parts, like ISO C++ demands?
Like this:
Code://TO TRANSPOSE A MXN MATRIX.// #include<iostream> #include<iomanip> using namespace std; main() { int a[3][4]; cout<<"ENTER THE ELEMENTS OF ARRAY : "; for(char i=0;i<3;++i) { for(char j=0;j<4;++j) cin>>a[i][j]; } for(char i=0;i<4;++i) { for(char j=0;j<3;++j) cout<<setw(3)<<a[j][i]<<" "; cout<<endl; } }Harsh J
www.harshj.com
Similar Threads
-
Far Cry 3
By damngoodman999 in forum GamerzReplies: 1212Last Post: 09-04-2013, 03:08 PM -
HTC Incredible S @ 18K
By TheLetterD in forum Mobiles and TabletsReplies: 5Last Post: 04-04-2012, 07:41 PM -
HTC Incredible S Or ??
By willymind in forum Mobiles and TabletsReplies: 15Last Post: 02-07-2011, 11:38 AM -
Incredible S vs Xperia Arc
By sanithkk81 in forum Mobiles and TabletsReplies: 14Last Post: 14-05-2011, 05:23 PM -
Incredible Speeds
By pushkar in forum Chit-ChatReplies: 17Last Post: 12-12-2008, 02:59 PM


LinkBack URL
About LinkBacks

Bookmarks