matrix of ABC

// ABC
#include<io.h>//need for cin cout
#include<conio.h>//need for getch

#include"matrix.h"//need for plot

int main()
{

matrix <int> CharMatrix (30,30,0)// to plot letters
{
for( row_counter = 0 ; row_counter < 30 ; row_counter++ )
{
for( column_counter =0 ; column_couter < 30 ; row_counter++ )
}
}
{
MyMatrix[10,5] = A;//Letter A
MyMatrix[20,10] = B;// Letter B
MyMatrix[30,15] = C;// Letter C
}

getch();
return 0;
}
// it says matrix file doesnt not exist

//or

// ABC
#include<iostream>//need for cin cout
#include<conio.h>//need for getch
using namespace std;
int main()

{
int a;
int b;
int c;


float a[3] =
{1,2,3};

float b[3] =
{4,5,6};

float c[3] =
{7,8,9};

int index
cout.setf(ios::showpoint);
cout.setf(ios::fixed);


getch();
return 0;
}
i cant get the numbers (What will be abc) to float in specific area
Topic archived. No new replies allowed.