#include
#include "stdafx.h"
#include "iostream"
int _tmain(int argc, _TCHAR* argv[])
{
ofstream outfile( "hahha.txt", ios_base::app );
for(double y=-1.25;y<1.25;y=y+0.0625)
{
for(double x=-2;x<0.5;x+=0.0625)
{
double a=0,b=0;
for(int k=0;k<513;k++)
{
a=x+(a*a)-(b*b);
b=y+(2*a*b);
double s=a*a+(b*b);
if(s>=1000)
{
outfile<<"■";
k=513;
}
if(k==512)
{
outfile<<"□";
k++;
}
}
}
}
for(int f=1;f>0;f++)
f=2;
return 0;
}
无视最后的for循环
无视没有命名空间
错误 4 error C2146: 语法错误: 缺少“;”(在标识符“outfile”的前面) f:\qqpcmgr\桌面\34\34\34.cpp 8 1 34
错误 5 error C2653: “ios_base”: 不是类或命名空间名称 f:\qqpcmgr\桌面\34\34\34.cpp 8 1 34
错误 7 error C3861: “outfile”: 找不到标识符 f:\qqpcmgr\桌面\34\34\34.cpp 8 1 34