0 like 0 dislike
16.3k views
請設計一程式,讓使用者輸入一個數字代表西元年,程式會判斷該年是不是閏年。

 

範例輸入1

2000

範例輸出1

2000 year is leap year

範例輸入2

1900

範例輸出2

1900 year is not leap year
[Exercise] Coding (C) - asked in 作業 by (18k points)
ID: 11639 - Available when: Unlimited - Due to: Unlimited

edited by | 16.3k views
0 0
Called for Help

159 Answers

0 like 0 dislike
Hidden content!
#include * **** *

#include * * *** ***



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

{
* ** * ** * year = 0;
* * ** * **** ** *** ** ** ** **

  
* ** **** *  % 400 == 0)
* * ** * * * * ** * *** ** **** * ** ** ***
** * * * * * * *** ** ** *
** * ** * * ** if(year % 4 == 0){
** **** ** *** * ***** *** *** % 100 != 0)
** **** * * ** * *** * ** ** ** * ** *** * * **

  }
** *******
**** ** *** ***** * * *** * *** ** * **** **** * * * ** ****
* ** * * *** ** * *** * * *** * * * *** * ** *
**** * ** * ***** 0;

}
answered by (-216 points)
0 like 0 dislike
Hidden content!
#include<stdio.h>



int main()

{

    int t;
* * ** * **** * * * *** * input a year:");
* ***** * ** * ** ** ***** * **** *
**** ** * *** *** ** ** * * (t%400==0)
** ** ** ** * ** ******** * *** * * ** * ** * *
** **** ** **** * * ** * ** * * *
* *** ** *** * ** * (t%100==0)
* ********** * * ** * ** ** * *
** ** ***** ** *** * ** *** *
** ** * *** **** * * (t%4==0)
****** ** *** *** *** * * * ** * *** * *
***** ** ******** * * ** * * **
**** * * ***** **** **** ********** * *
** * * * *** ** * *** * ** ** 0;
* * * * ** *** ** *** *
answered by (-102 points)
0 like 0 dislike
Hidden content!
*** *** * ** ****

int main()

{int i=0;
** *** ** input year * ** *** **
*** * ** **** * * *

if (i%4!=0)
* * *** * *** **

else if ****
****** *** * *

else if * *
* ** * * ***** ** **** ** * ** ** *** *
* ***** *** *
* * ** * ** * * *** * ** ** * *

return 0;

}
answered by (-304 points)
0 like 0 dislike
Hidden content!
#include <stdio.h>

#include <stdlib.h>



int main (void)

{
* ** ** ******* ** * *** ** * year=0;

     
* ** * * * * * ******* ******* * * ** * * * **** input year:");
* *** *** * * **** * ** ** ** ** **** ** * ** **** **** **

     

     

     
** ** *** ** * ** ** *** * (year%4 == 0)

     {
** ** * * * *** *** * *** ***** **** * ******** ** **** ** ***** * *** * * ** * ** (year%100 == 0 )
** * **** * ***** *** ** ** * * *** **** ** *** * * * *** ** * ** ** ** * ** ** **
** * * ** **** * ****** ******* * *** * **** *** * * * ** * * * **** *** **** *** *** ******* ** * * ** ** ** * * ** * ******* * ****** * * (year%400 == 0)
* * ** * * * ** * * * *** * ** * * * ** ** ***** * ** * * ********* * *** *** * * * * ** ** ** ** * *** * ***** * * ** * ***** * * * ***** ** * *** * *** * ****** a leap year");
* * ** * **** * ** **** * ** *** * * * *** ** ** * * * * * * * *** * * ********* * * * * ******* **** * ******* * ** ** * ** * * *** ** **** * *****
* ** ** *** * * * * *** * ** *** ****** * ****** *** *** ** * ***** * ** * ** ** ** ******* * * * * * ** * * * * ** * *** ** ** ** ** *** a common year");
* ** * **** * * **** ** ** ** ** * ** * * * ** * ** * ** *** ** ********** ** *** * *
* * *** ** * ***** ** *** * * ** ** * * *** * ********** ** * *** * *** * * *** ******
*** ** * *** ** ** **** * ** * ** * * ** * * ** * * * **** * * ** * * ** * * **** ***** a leap year");

     }
** ** * * *** *** *** ** * ** **
* ** * * * * ** * * * ** * ** * * * a common year");
*** *** *** *** * * * *** * * **** * **** **** *** ** *** * * * **** * ** ** * * * ** *



     
* *** * * * * *** * * * * **** *** *****
* * ** **** ** * * * * **** * * 0;

}
answered by (-170 points)
0 like 0 dislike
Hidden content!
#include * * * ****



main()

{
** ** ** * * * year=0;
* **** ** * * ***** ** ** * * &year);
* *** * ** *** * * * **** && year%100 !=0  )
* * ** * * * * *** * ** **** ** **
*** *** ***** * ** **
* *** * ***** ** * ***** ** ** ** ** * ** * * * **** * * **** * ** **** * * *** * * * *** * *
** ** * ** * ** ** ** * *

}
answered by (-284 points)
0 like 0 dislike
Hidden content!
#include<stdio.h>

#include<stdlib.h>



int main()

{
** *** * ** ** ** **** *** year=0;
** *** * * *** * **** * * ** * ** ** **** * * ** *
**** *** * ** * *
** * * * *** ** *** ** *
* * * *** * ** * **** ** * * *** *** * *
* * * ** ** * ** ** *** * *
* *** * * ** ** * if(year%100!=0)
* *** *** ** * ********* **** * * * * * * *
* ****** * *** *** ***
** **** *** * ** if(year%400!=0)
* ** *** * * * ** **** ** **** * ** ** * *

    
*** ** **** *** ***** *** ** * **
* ** ** ** **** * * *** ** ** *** ******
*** ** *** **
** * * ** * *** * **** ** *** ("PAUSE");
**** **** * ** ** ** * **** * ****** * 0;
**** * * ** ** *** ** ***
answered by (-264 points)
0 like 0 dislike
Hidden content!
#include * ** ** *

#include * * ** ******



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

{
** * ** year = 0;
* *** *** ** ** **** *** * * * ****

  
* *** * * * **  % 400 == 0)
* ** * **** ***** * *** * ** * * **** * ********* *
** ** ** *** *** ** ****
** ** **** *** ** if(year % 4 == 0){
***** ** *** * ** *** * * * * % 100 != 0)
* * ***** ** * ** * * * *** * ****** ** ***** * ** ** ** * * ** **** *
*** ** ***
*** *** *
** * ***** *** * ** *** *** * ** ** ** *****
* ****** ** *** ***** * ** ** * * *
** * *** 0;

 }
answered by (-216 points)
0 like 0 dislike
Hidden content!
#include <stdio.h>



main()

{
* ** *** ** *** * * *** ** ** ** ** ** year=0;

      
*** *** ** ** * ** ** **** *** * * ** *** * *** &year);

      
* * *** * * * * * * * ** == 0)
** ** * * * * *** *** * * *** * *** *** ** * * **
* * * * * * * *** * * *** * * *** ** ****
* * * ** ****** ** * **** * *****
* * ** ** ** * * * ***** * **** == 0)
** **** * * * * * **** * ** ** * * * * *
* ** ****** * * * * * * *** * *
* *** *** ** * **** * * * ******
** * * **** * * * ****** *** * *** == 0)
* *** ** ****** * * ** ** **** * * ** * ** ** * * *
* * * * ** ** * * * * * * ******* ** ** * * **** ** * * * **** ***
** ** ** * ** *** * **** * * * * * **** *** * ** * ** * **

}
answered by (-30 points)
0 like 0 dislike
Hidden content!
#include<stdio.h>

#include<stdlib.h>





int main()

{

* **** * * *** * *** ** *
* * * ** * * * ** * ****** * * *
* ** ** * * * * ***** * * ***
** * *** *** * * ** * *** ** * * a = 0 ;


** * ** * * * ** * * *** ** ** ** * ***** &a );
* *** ** ** ** * * ** *** * * ***
* ***** **** ** * * * * **
* *** ***** ** ***** ** * *** **** * * * **** ** ** **** a );      
* ** * * * * *** ****** ** * ***** * * ** * * ***
** * *** * * * ** **** * *** **** * ** * * ** * a );      
** * * * ** * * * **** * * * * * ** ****** **  
* * * *** ** * *** * * ** **** ******* ** * **** ** * * *** * * a );    
**** * * ** ** * *** ** * * ***      
* * *** * * ** * ** * **** * * ** **** * * ** ** ** * a );  
* ***** ** *** ** **** * * * ******* *
* * *** ** * * ***** *** *** ***** * * * ** *********** * *
*** ****** * *** * * * * * *
* * * * ** * ** * * * **** *** 0;
* ***** ** * *** * ** * ***

}
answered by (-186 points)
0 like 0 dislike
Hidden content!
*** * **** *
* * * * *



int main()





{ * ** * * * * **** * year=0;
* * * ** *** * ** * * * * *** * input the year:");
* * * **** ** ** *** * ** ***** *** * * *** ** *

   
** ** **** * * * * (year%400==0)
** * * * * * ** ** * *** * * *** ** *** * *** ** * *
* ** ****** * *
* ** * * *** * * *** * if(year%4==0 && year%100!= 0)
* * * * ** **** ** * ** ** * ******** * *** **** **
* ***** *** * * ** * * if(year%100==0 && year%400!= 0)
** ** ***** ** ** *** ** * * ** ***** ** * * *
** * *** ** * * **** *** if(year%4!=0)
** * * *** **** *** * ** ** * * * ***

** * ** * * * * * **
** * ** ***** * ***** * year 365");
* * ******* * *
** * * *** * *** *
* ** **** ** * ** * ** *** *** ** *
* * ** ** *** ** *** 0;

}
answered by (-186 points)
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English 中文 Tiếng Việt
IP:172.69.214.205
©2016-2025

Related questions

0 like 0 dislike
40 answers
[Exercise] Coding (C) - asked Sep 29, 2016 in 作業 by Shun-Po (18k points)
ID: 11795 - Available when: Unlimited - Due to: Unlimited
| 4.7k views
0 like 0 dislike
73 answers
[Exercise] Coding (C) - asked Sep 29, 2016 in 作業 by Shun-Po (18k points)
ID: 11603 - Available when: Unlimited - Due to: Unlimited
| 7.8k views
0 like 0 dislike
31 answers
[Exercise] Essay (Open question) - asked Nov 3, 2016 in 作業 by Shun-Po (18k points)
ID: 16958 - Available when: Unlimited - Due to: Unlimited
| 4k views
0 like 0 dislike
31 answers
[Exercise] Coding (C) - asked Oct 20, 2016 in 作業 by Shun-Po (18k points)
ID: 14582 - Available when: Unlimited - Due to: Unlimited
| 3.8k views
0 like 0 dislike
47 answers
[Exercise] Essay (Open question) - asked Sep 22, 2016 in 作業 by Shun-Po (18k points)
ID: 11533 - Available when: Unlimited - Due to: Unlimited
| 5.3k views
12,783 questions
183,442 answers
172,219 comments
4,824 users