大家帮忙改一改吧!呜呜
有一些日期,在文件中,后面加*号的表示要加班的日期,试汇总所有每个月25号的天数,如果是加班日,则该天乘2.有一些日期,在文件abc.txt中,后面加*号的表示要加班的日期,试汇总所有每个月25号的天数,如果是加班日,则该天乘2.
Oct.25 2003
Oct.26 2003
Sep.12 2003*
Juy.25 2002*
App.25 2004
我的源程序是:
//===================================================
#include<iostream>
#include<string>
#include<fstream>
using namespace std;
//----------------------------------------------------
int main()
{
ifstream in("abc.txt");
int b = 0;
for(string s; getline(in, s);)
{
if(s.find("25")=1 && s.find('*')!=-1 ) b++;
}
if(s.find("25") && s.find('*'))
b =b * 2;
cout<<" b = "<<b<<endl;
return 0;
}