help with values off accelerometer and serial print

Hi,
I am using the accel ADXL335
with example code ,
I notice that serial print prins values but they are chunk it.
for example .

goes from 400, next is 435, next 450 etc.
I have try to reduce serial print to 7 and that does not fix the problem
how is possible to print sting of values

thanks in advance

/*
ADXL3xx

Reads an Analog Devices ADXL3xx accelerometer and communicates the
acceleration to the computer. The pins used are designed to be easily
compatible with the breakout boards from Sparkfun, available from:

The circuit:
analog 0: accelerometer self test
analog 1: z-axis
analog 2: y-axis
analog 3: x-axis
analog 4: ground
analog 5: vcc

created 2 Jul 2008
by David A. Mellis
modified 4 Sep 2010
by Tom Igoe

This example code is in the public domain.

*/

// these constants describe the pins. They won't change:
const int groundpin = 18; // analog input pin 4 -- ground
const int powerpin = 19; // analog input pin 5 -- voltage
const int xpin = A3; // x-axis of the accelerometer
const int ypin = A2; // y-axis
const int zpin = A1; // z-axis (only on 3-axis models)

void setup()
{
// initialize the serial communications:
Serial.begin(9600);

// Provide ground and power by using the analog inputs as normal
// digital pins. This makes it possible to directly connect the
// breakout board to the Arduino. If you use the normal 5V and
// GND pins on the Arduino, you can remove these lines.
pinMode(groundpin, OUTPUT);
pinMode(powerpin, OUTPUT);
digitalWrite(groundpin, LOW);
digitalWrite(powerpin, HIGH);
}

void loop()
{
// print the sensor values:
Serial.print(analogRead(xpin));
// print a tab between values:
Serial.print("\t");
Serial.print(analogRead(ypin));
// print a tab between values:
Serial.print("\t");
Serial.print(analogRead(zpin));
Serial.println();
// delay before next reading:
delay(100);
}

I notice that serial print prins values but they are chunk it.

They are what?

I have try to reduce serial print to 7 and that does not fix the problem

I don't see a relationship between Serial.print() and 7 that would allow you to migrate along a path from one to the other, so this statement makes no sense.

how is possible to print sting of values

A string is a NULL terminated character array. Are the values characters?

Or do you want to print an array of values or a series of values? If you want to print a series of values, use a series of Serial.print() statements. If you want to print an array of values, use a for loop.

If the problem is that the accelerometer is moving, and the values that you print are moving around, well, that is to be expected. If the delta between values is higher than you expect, try printing faster. Serial.begin(9600) is sssslllloooowwww. Bump that speed up to a higher value. 19200, 38400, 57600, and 115200 are all supported speeds.