Commit 11ae8ba7 authored by Bruce Momjian's avatar Bruce Momjian

Add mention of int in variable.

parent bc4e6db4
...@@ -51,7 +51,7 @@ int main() ...@@ -51,7 +51,7 @@ int main()
cout << endl << endl; cout << endl << endl;
// next, print out the instances // next, print out the instances
for (i=0; i < data.Tuples(); i++) { for (int i=0; i < data.Tuples(); i++) {
for (int j=0; j < nFields; j++) for (int j=0; j < nFields; j++)
cout << setiosflags(ios::right) << setw(15) << data.GetValue(i,j); cout << setiosflags(ios::right) << setw(15) << data.GetValue(i,j);
cout << endl; cout << endl;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment