首页 试题详情
问答题

第三题 阅读以下代码和问题,回答问题1至问题3,将解答填入答题纸的对应栏内。 【代码 1】 typedef enum {A,B,C,D} EnumType; EnumType f(int yr) { if(0 == yr%400) { return A; } else if (!(yr%4)) { if(0!=yr%100) return B; else return C; } return D; } 【代码2 】 #include<stdio.h> int main() { int score; scanf("%d",&score); switch (score) { case 5: printf("Excellent!\n"); case 4: printf("Good!\n"); break; case 3: printf("Average!\n"); case 2: case 1: case 0: printf("Poor!\n"); default: printf("Oops,Error\n"); } return 0; } 【代码3】 #include<stdio.h> int main() { int i,j,k; for(i=0; i<2; i++) for(j=0; j<3;j++) for( k=0; k<2;k++) { if(i!=j&&j!=k) printf("%d %d %d\n", i,j,k); } ruturn 0; } 问题:3.1 (4分) 对于代码1,写出下面的函数调用后x1 、x2、x3和x4的值。 x1 = f(1997); x2 = f(2000); x3 = f(2100); x4 = f(2020); 问题:3.2 (5分) (1)写出代码2进行时输入为3的输出结果; (2)写出代码2进行时输入为5的输出结果。 问题:3.3 (6分) 写出代码3运行后的输出结果。

正确答案:A (备注:此答案有误)

相似试题

  • 问答题

    第三 阅读以下代码问题回答问题1问题3,将解答填入答题纸的对应栏内。【代码 1】typedef enum {A,B,C,D} EnumType;EnumType f(int yr){ if(0 == yr%400) { return A; } else if (!(yr%4)) { if(0!=yr%100) return B; else return C; } return D;}【代码2 】#include<stdio.h>int main(){ int score; scanf(%d,&score); switch (score) { case 5: printf(Excellent! n); case 4: printf(Good! n); break;

    答案解析

  • 判断题

    主动阅读的核心是:你在阅读时要提出问题来—在阅读的过程中,你自己必须尝试去回答问题

    答案解析

  • 问答题

    阅读以下说明,回答问题1问题2,将解答填入答题纸对应的解答栏内。【说明】某留言系统采用ASP+Access开发,其后台管理登录页面如图4-1所示。【问题1】(9分)以下是该后台管理登录页面login.asp的部分代码,请仔细阅读该段代码,根据图4-1 将(1)~(9)的空缺代码补齐。【问题2】(6分)1.在登录页面 login.asp 中通过<!--#include file=“bbb.asp”-->导入了bbb.asp的代码以下是bbb.asp的部分代码,请仔细阅读该段代码,将空缺代码补齐。

    答案解析

  • 材料题

    低压配电线路保护,请回答以下问题

    答案解析

  • 单选题

    回答电力系统安全稳定控制技术中的以下问题以下安全稳定控制措施中,第三道防线的控制措施是()。

    答案解析

热门题库