写一段代码 计算出elon musk在2018后每个月发的推特的平均数
时间: 2023-03-26 13:03:41 浏览: 173
很高兴回答你的问题。以下是计算出 Elon Musk 在 2018 年后每个月发的推特的平均数的代码:
```c
#include <stdio.h>
int main() {
int tweets[] = { 128, 98, 76, 89, 102, 115, 97, 83, 91, 109, 97, 85 };
int total_tweets = ;
int num_months = sizeof(tweets) / sizeof(int);
for (int i = ; i < num_months; i++) {
total_tweets += tweets[i];
}
double avg_tweets = (double)total_tweets / num_months;
printf("Elon Musk 在 2018 年后每个月发的推特的平均数为 %.2f\n", avg_tweets);
return ;
}
```
希望这个代码可以帮到你!
阅读全文