编程要求
设置一个for循环,每次输出一个txt文件,并且输出文件名依次是“3D points-1”、“3D points-2”、“3D points-3”、“3D points-4”等等。
代码实现
#include <iostream>
#include <cstring>
#include <vector>
using namespace std;
void int2str(int n, char *str);
int main() {
for (int j = 0; j < 2; j++)
{
vector<int> num(5);
for(int i = 0; i < num.size(); i++ ) num[i] = j * 2;
char str1[] = "../output/", str2[] = "3D points-", str3[10] , str4[] = ".txt";
char filename[25]; //用来存储RANSAC之前的3D点集的.txt文件,文件名如./output/3D points-1.txt
int2str(j+1, str3);
strcat(filename, str1);
strcat(filename, str2);
strcat(filename, str3);
strcat(filename, str4);
FILE *fp;
fp = fopen(filename, "w");
if (fp == NULL ) cout << "Cann't open the file!" << endl;
for (int i = 0; i < num.size(); i++) fprintf( fp, "%d\n", num[i] );
fclose(fp);
}
return 0;
}
//将整型数j转换成字符串[注:字符串就是字符数组]
void int2str(int n, char *str){
char buf[10] = "";
int i = 0;
int len = 0;
int temp = n < 0 ? -n : n; //temp为n的绝对值
if (str == NULL){
return;
}
while(temp){
buf[i++] = (temp % 10) + '0'; //把temp的每一位上的数存入buf
temp = temp /10;
}
len = n < 0 ? ++i : i; //如果n是负数,则需要多一位来存储负号
str[i] = 0; //末尾是结束符0
while(1){
i--;
if (buf[len-i-1] == 0) break;
str[i] = buf[len-i-1]; //把buf数组里的字符拷到字符串
}
if (i == 0) str[i] = '-'; //如果是负数,添加一个负号
}
出现的问题
当上述代码中的for (int j = 0; j < 2; j++){
改为for (int j = 0; j < 1; j++){
时,它能够正确运行,可一旦判断条件大于或等于2时,它就报错,不能输出第2个文件“3D points-2.txt”,求问为什么!