Separating output display

Having an issue with separating values on my output display. The line in bold shows the problem. I put a spacer inbetween t and x, then tried to do the same between x and z. This came up with error: invalid hexadecimal number.
Any solutions?

Headers
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
float main()
{
			float mat[3][3],x,t,z;
		        ifstream infile("matrix.txt");
			if(infile.good())
			{
				for(float i=0; i<1; ++i)
				for(float j=0; j<6; ++j)
				{
					infile >>t>>x>>z;
					cout <<t<<"\t"<<x<<"\x"<<z<<endl;
				}
			getch();
			return (0);
			}			
			else 
			{
				cout<<"File error!";
				return(-1);
			}
}
I changed it to a y and it worked, nevermind
Topic archived. No new replies allowed.