| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 504 人关注过本帖
标题:这个错误怎么改呀
只看楼主 加入收藏
W649897
Rank: 1
等 级:新手上路
帖 子:50
专家分:0
注 册:2006-11-26
收藏
 问题点数:0 回复次数:2 
这个错误怎么改呀

#include<iostream>
#include<fstream>
void test1(const char an1[],bool&bo);
void test2(const char an1[],bool&bo);
void outscore(char an[],char an1[],bool bo);
using namespace std;

int main()
{
ifstream indata;
ofstream outdata;

indata.open("exams.txt");
outdata.open("scores.txt");

while(indata)
{
bool bo1=true;
char*id;
char answer[22];
indata.getline(answer,22,'\n');
indata>>id;
char answer1[30];
indata.getline(answer,30,'\n');
test1(answer1,bo1);
test2(answer1,bo1);
outscore(answer,answer1,bo1);
outdata<<endl;
}

return 0;
}
void test1(const char an1[],bool&bo)
{
int i,count=0;
for(i=0;i<30;i++)
while(an1[i]!='\0')
count++;
if(count<20)
{
outdata<<"Too few answers ";
bo=false;
}
if(count>20)
{
outdata<<"Too many answers ";
bo=false;
}
}
void test2(const char an1[],bool&bo)
{
int i;
for(i=0;i<30;i++)
while(an1[i]!='\0')
while(!(an1[i]>=97&&an1[i]))
{
outdata<<"Invalid answers ";
bo=false;
}
}
void outscore(char an[],char an1[],bool bo)
{
int i,count;
if(bo)
{
for(i=0;i<20;i++)
{
if(an1[i]=an[i])
count++;
}
outdata<<count;
}
}
编译时出错 怎么也想不痛,各位大虾多多指点
--------------------Configuration: chapter7 - Win32 Debug--------------------
Compiling...
c.cpp
E:\temp\chapter7\c.cpp(41) : error C2065: 'outdata' : undeclared identifier
E:\temp\chapter7\c.cpp(41) : error C2297: '<<' : illegal, right operand has type 'char [18]'
E:\temp\chapter7\c.cpp(46) : error C2297: '<<' : illegal, right operand has type 'char [18]'
E:\temp\chapter7\c.cpp(57) : error C2297: '<<' : illegal, right operand has type 'char [18]'
E:\temp\chapter7\c.cpp(71) : warning C4552: '<<' : operator has no effect; expected operator with side-effect
Error executing cl.exe.

chapter7.exe - 4 error(s), 1 warning(s)

2006-12-07 20:56
kai
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:52
帖 子:3450
专家分:59
注 册:2004-4-25
收藏
得分:0 
[CODE]#include<iostream>
#include<fstream>
using namespace std;

void test1(const char an1[], bool & bo, ofstream & outdata);
void test2(const char an1[],bool & bo, ofstream & outdata);
void outscore(char an[],char an1[],bool bo, ofstream & outdata);

int main()
{
ifstream indata;
ofstream outdata;

indata.open("exams.txt");
outdata.open("scores.txt");

while(indata)
{
bool bo1=true;
char id[20]; // Caution
char answer[22];
indata.getline(answer,22,'\n');
indata>>id;
char answer1[30];
indata.getline(answer,30,'\n');
test1(answer1,bo1, outdata); // Caution
test2(answer1,bo1, outdata); // Caution
outscore(answer,answer1,bo1, outdata); // Caution
outdata<<endl;
}
return 0;
}

void test1(const char an1[], bool & bo, ofstream & outdata)
{
int i,count=0;
for(i=0;i<30;i++)
while(an1[i]!='\0')
count++;
if(count<20)
{
outdata<<"Too few answers ";
bo=false;
}

if(count>20)
{
outdata<<"Too many answers ";
bo=false;
}
}

void test2(const char an1[],bool & bo, ofstream & outdata)
{
int i;
for(i=0;i<30;i++)
while(an1[i]!='\0')
while(!(an1[i]>=97&&an1[i]))
{
outdata<<"Invalid answers ";
bo=false;
}
}

void outscore(char an[],char an1[],bool bo, ofstream & outdata)
{
int i,count;
if(bo)
{
for(i=0;i<20;i++)
{
if(an1[i]==an[i]) // Caution
count++;
}
outdata<<count;
}
}

[/CODE]

自由,民主,平等,博爱,进步.
中华民国,我的祖国,中华民国万岁!中华民国加油!
本人自愿加入中国国民党,为人的自由性,独立性和平等性而奋斗!
2006-12-08 03:35
W649897
Rank: 1
等 级:新手上路
帖 子:50
专家分:0
注 册:2006-11-26
收藏
得分:0 

谢谢了

2006-12-08 15:35
快速回复:这个错误怎么改呀
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.056946 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved