#3260: 安怎都是平年 =口=


lmk999999 (lmk999999)

學校 : 臺北市立中正高級中學
編號 : 10636
來源 : [203.72.62.252]
最後登入時間 :
2010-06-24 08:28:19
a004. 文文的求婚 | From: [216.104.15.134] | 發表日期 : 2010-01-12 20:49

我怎麼打都是平年呀!><

誰可以幫我一下... T T

 #include<iostream>

#include<math.h> 

 

using namespace std;

 

int main(int argc, char *argv[])

      {

          int x,a,b,c ;

          float m;

          while(cin >> x)

          {

                    

                    if (x/4==a)

                    {

                        if (x/100==b)

                        {

                            cout << "平年" << endl ;

                        }

                        else

                        {

                            cout << "閏年" << endl ;

                        }

                    }

                    else if (x/400==c)

                    {

                        cout << "閏年" << endl ;

                    } 

                    else

                    {

                        cout << "平年" << endl ;

                    }

          }

          return 0;}

 

 

 

 

 
#3262: Re:安怎都是平年 =口=


example (學姊)

學校 : 臺北市立麗山高級中學
編號 : 6634
來源 : [60.250.138.144]
最後登入時間 :
2022-08-09 17:07:42
a004. 文文的求婚 | From: [118.166.113.251] | 發表日期 : 2010-01-12 21:56

我怎麼打都是平年呀!><

誰可以幫我一下... T T

 #include

#include 

using namespace std;

int main(int argc, char *argv[]) {

          int x,a,b,c ;

          float m;

          while(cin >> x) {

                    if (x/4==a) {

                        if (x/100==b) {

                            cout << "平年" << endl ;

                        } else {

                            cout << "閏年" << endl ;

                        }

                    } else if (x/400==c) {

                        cout << "閏年" << endl ;

                    }  else {

                        cout << "平年" << endl ;

                    }

          }

          return 0;

}

 

 a, b, c 沒有初始化喔

 如果要判斷餘數的話請用 % 運算子

 
#3269: Re:安怎都是平年 =口=


b821213 (後繼無人)

學校 : 臺南市私立興國高級中學
編號 : 9916
來源 : [157.107.107.134]
最後登入時間 :
2021-09-14 02:53:36
a004. 文文的求婚 | From: [118.233.173.190] | 發表日期 : 2010-01-14 22:24

我怎麼打都是平年呀!><

誰可以幫我一下... T T

 #include

#include 

using namespace std;

int main(int argc, char *argv[]) {

          int x,a,b,c ;

          float m;

          while(cin >> x) {

                    if (x/4==a) {

                        if (x/100==b) {

                            cout << "平年" << endl ;

                        } else {

                            cout << "閏年" << endl ;

                        }

                    } else if (x/400==c) {

                        cout << "閏年" << endl ;

                    }  else {

                        cout << "平年" << endl ;

                    }

          }

          return 0;

}

 

 a, b, c 沒有初始化喔

 如果要判斷餘數的話請用 % 運算子

我個人看完你的程式倒是覺得...你似乎對C有很大的誤解@@

建議你還是先回去把課本(一般來說都是Deitel那本)前幾個章節看仔細

看完再來解

有些地方很明顯地表示你連基本的運算操作都不太熟析喔...

 
ZeroJudge Forum