程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> c++-菜鳥一枚 我想求總共的天數 可是 程序沒有錯誤 卻不出結果 幫助

c++-菜鳥一枚 我想求總共的天數 可是 程序沒有錯誤 卻不出結果 幫助

編輯:編程解疑
菜鳥一枚 我想求總共的天數 可是 程序沒有錯誤 卻不出結果 幫助

#include
class Date
{
int year,month,day;
public :
void show();
int set(int a,int b,int c);

};
void Date::show ()
{
cout<<"please input year ,month,day."< }
int Date::set (int a,int b,int c)
{
year=a; month=b; day=c;
int s=0, i,j=1;
for(i=0;i {
if(i%4==0||i%400==0)
j++;
}
s=31*b;
if (b>1)
s=s-3;
if (b>3)
s=s-1;
if (b>5)
s=s-1;
if (b>8)
s=s-1;
if(b>10)
s=s-1;
s=i*365+j+s+c ;
return s;
cout<<"s="<<s<<endl;
}
int main()
{
Date date1;
date1.show ();
date1.set (1996,5,13);
return 0;

}

最佳回答:


樓主你把cout<<"s="<<s<<endl;放在了return後面當然輸不出結果了
兩句話換個位置就好

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved