文件题 (分值50.0分,难度:易) 自定义有函数fun(int year),主函数调用该函数,判断某年份是否为闰年。
时间: 2024-02-20 15:59:31 浏览: 248
好的,这是一个简单的判断闰年的问题。以下是代码实现:
```c++
#include <iostream>
using namespace std;
bool fun(int year) {
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
return true;
}
else {
return false;
}
}
int main() {
int year;
cout << "请输入年份:";
cin >> year;
if (fun(year)) {
cout << year << "年是闰年!" << endl;
}
else {
cout << year << "年不是闰年!" << endl;
}
return 0;
}
```
函数 `fun(int year)` 中,我们采用了闰年的判断规则:如果该年份能被4整除但不能被100整除,或者能被400整除,则该年份为闰年。函数返回一个布尔值,表示该年份是否为闰年。
在主函数中,我们通过 `cin` 输入一个年份,并调用 `fun` 函数来判断该年份是否为闰年。如果是闰年,则输出该年份是闰年,否则输出该年份不是闰年。
相关问题
请用自定义函数的形式编程实线求10名学生1门课程成绩的平均分
没,请看以下示例代码:
```
def calculate_average_score(scores):
# scores是一个列表,包含10名学生的成绩
total_score = sum(scores)
average_score = total_score / len(scores)
return average_score
```
使用方法如下:
```
# 假设以下是10名学生的成绩,存储在一个列表中
scores = [85, 72, 90, 68, 92, 88, 75, 80, 79, 86]
# 调用自定义函数,计算平均分
average_score = calculate_average_score(scores)
# 输出结果
print("10名学生的平均分为:", average_score)
```
在上面的示例中,我们首先定义了一个名为calculate_average_score的自定义函数,该函数接受一个列表参数scores,计算该列表中所有成绩的总和和平均值,然后返回平均值。接着我们声明了一个名为scores的列表,其中包括了10名学生的成绩。我们将这个列表作为参数传递给计算平均分的自定义函数,得到平均分值并输出结果。
阅读全文