我在CODEBLOCKS中运行一个程序,它关联数组中的数字然后找到平均值。我有25个样本,并希望复制输出并将其放入字中进行打印。但是,输出窗口会切断样本1-11并且仅显示12-25。我添加了getch()所以我可以根据需要复制和粘贴,但只是想知道是否有办法增加输出文本限制。谢谢。以下代码,如果它有助于您理解
int main()
{
int x,high=1,low=0;
for (x=0;x<25;x++)
{
calcPercent(low,high);
high++;
low++;
getch();
}
return 0;
}
void calcPercent(int low,int high)
{
int x,y;
float valid,mean,total=0;
for (x = low ;x < high;x++)
{
for ( y = 0; y < 20; y++ )
float percent[500]
int sample[25][20]
//This is just the top part of the function
答案 0 :(得分:0)
为什么不将输出写入文本文件?您可能仍然使用printf,并且对fprintf的调用具有相同的语法(除了您将文件句柄作为第一个参数。此链接有一个关于如何写入文件的简短示例:http://www.cplusplus.com/reference/cstdio/fprintf/