单项选择题

五四运动后比较全面系统介绍马克思的学说的文章是李大钊所写的()。

A、《法俄革命之比较观》
B、《庶民的胜利》
C、《布尔什维克的胜利》
D、《我的马克思主义观》
热门 试题

单项选择题
从键盘输入你的出生年月,编程输出你出生的月份有多少天,是什么季节,假设规定3~5月为春季,6~8月为夏季,9~11月为秋季,1、2和12月为冬季。要求程序能够在用户输入非法字符或者非法的年份和月份时输出错误提示信息: Input error! n ,并结束程序的执行。 要求考虑闰年的情况,已知满足如下条件之一的就是闰年: (1)能被4整除但不能被100整除; (2)能被400整除。 **输入格式要求: %d, %d 提示信息: Input year,month: **输出天数的格式要求: %d days n **输出季节的格式要求: The season is spring n , The season is summer n , The season is autumn n , The season is winter n 如果输入了非法字符或者年份小于1或者月份不在合法的区间内,则输出 Input error! n ,并结束程序的执行。 程序运行示例如下: Input year,month:2012,2↙ 29 days The season is winter 补全缺少的语句 #include <stdio.h> #include <stdliB.h> int main() { int year, month, n; printf( Input year,month: ); n = scanf( %d, %d , &year, &month); if (____________) { printf( Input error! n ); exit(0); } if ( ____________ ) { if ( ____________ ) printf( 29 days n ); else printf( 28 days n ); } else if ( ____________ ) printf( 30 days n ); else printf( 31 days n ); if (month >= 3 && month <= 5) printf( the season is spring n ); else if (month>= 6 && month <= 8) printf( the season is summer n ); else if (month>= 9 && month <= 11) printf( the season is autumn n ); else winter n ); return 0;> A、第一句: n != 2 || year < 1 || month < 1 || month >12 第二句: month == 2 第三句: year % 4 == 0 && year % 100 != 0) || (year % 400 == 0) 第四句:month == 4 || month == 6 || month == 9 || month == 11B、第一句: n != 2 || year < 1 || month < 1 || month >12 第二句: month = 2 第三句: year % 4 = 0 && year % 100 != 0) || (year % 400 = 0) 第四句:month = 4 || month = 6 || month = 9 || month = 11C、第一句: n != 2 && year < 1 && month < 1 && month >12 第二句: month == 2 第三句: year % 4 == 0 && year % 100 != 0) || (year % 400 == 0) 第四句:month == 4 && month == 6 && month == 9 && month == 11D、第一句: n = 2 || year < 1 || month < 1 || month >12 第二句: month = 2 第三句: year % 4 = 0 && year % 100 != 0) || (year % 400 = 0) 第四句:month = 4 || month = 6 || month = 9 || month = 11
A.h>
B.h>