下面If语句统计满足职称(用字符串变量duty表示)为副教授或教授、且年龄(用整型变量age表示)小于40岁条件的人数,正确的语句是______。
A: If age < 40 And (duty = "教授" or duty = "副教授") Then n = n + 1
B: If age < 40 And duty = "教授" or duty = "副教授" Then n = n + 1
C: If age < 40 And duty = "教授" or "副教授" Then n = n + 1
D: If age < 40 Or duty = "教授" And duty = "副教授" Then n = n + 1
A: If age < 40 And (duty = "教授" or duty = "副教授") Then n = n + 1
B: If age < 40 And duty = "教授" or duty = "副教授" Then n = n + 1
C: If age < 40 And duty = "教授" or "副教授" Then n = n + 1
D: If age < 40 Or duty = "教授" And duty = "副教授" Then n = n + 1
举一反三
- 下面If语句统计满足职称(用字符串变量duty表示)为副教授或教授、且年龄(用整型变量age表示)小于40岁条件的人数,正确的语句是______。 A: If age < 40 And (duty = "教授" or duty = "副教授") Then n = n + 1 B: If age < 40 And duty = "教授" or duty = "副教授" Then n = n + 1 C: If age < 40 And duty = "教授" or "副教授" Then n = n + 1 D: If age < 40 Or duty = "教授" And duty = "副教授" Then n = n + 1
- 中国大学MOOC: 下面If语句统计满足职称(用字符串变量duty表示)为副教授或教授、且年龄(用整型变量age表示)小于40岁条件的人数,正确的语句是______。
- 【单选题】下面的if语句统计满足“性别(gender)为男、职称(rank)为教授、年龄(age)小于40岁”条件的人数,正确的语句为 (2.0分) A. if (gender=="男" or age<40 and rank="教授"): n+=1 B. if (gender=="男" and age<40 and rank="教授"): n+=1 C. if (gender=="男" and age<40 or rank="教授"): n+=1 D. if (gender=="男" or age<40 and or="教授"): n+=1
- 中国大学MOOC:下面If语句统计满足性别(sex)为男、职称(duty)为副教授以上、年龄(age)小于40岁条件的人数,不正确的语句是()。
- 筛选“教授”、“副教授”的教师,下面写法正确的是()。 A: 职称=“教授”AND职称=“副教授” B: 职称=“教授”AND“副教授” C: 职称=“教授”OR“副教授” D: 职称IN(“教授”,”副教授”)