首页 > 代码库 > 问题 1061: C二级辅导-计负均正
问题 1061: C二级辅导-计负均正
/******************************************************************** @file Main.cpp @date 2017-6-28 09:58:32 @author Zoro_Tiger @brief 问题 1061: C二级辅导-计负均正 http://www.dotcpp.com/oj/problem1061.html ********************************************************************/ //!头文件 #include <cstdio> #include <cmath> //!程序入口 int main(int argc, const char* argv[]) { //!计算 double sum = 0, temp = 0, count = 0; for (int i = 0; i < 20; ++i) { scanf("%lf", &temp); if (temp <= 0) { ++count; } else { sum += temp; } } //!输出结果 printf("%d\n", static_cast<int>(count)); printf("%.2lf\n", sum / (20.0 - count)); //!返回系统 return 0; }
问题 1061: C二级辅导-计负均正
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。