Skip to content
Snippets Groups Projects
Commit f895f0b2 authored by Jason R Wilson's avatar Jason R Wilson
Browse files

fixed indent

parent b5430ed0
No related merge requests found
......@@ -38,7 +38,7 @@ int main (int argc, char* argv[]) {
int n;
if (scanf("%d",&n) != 1) {
printf ("error reading the number of points\n");
return 1;
return 1;
}
// read the data matrix
......@@ -46,7 +46,7 @@ int main (int argc, char* argv[]) {
for (int i=0;i<n;i++) {
if (scanf("%lf %lf",&(data[i].x),&(data[i].y)) != 2) {
printf ("error reading the data matrix\n");
return 1;
return 1;
}
}
......
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