hdu 2008 数值统计
Posted pcdl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 2008 数值统计相关的知识,希望对你有一定的参考价值。
数值统计
思路:分为正数,负数,0,三类,然后分别统计
代码:
#include<iostream> using namespace std; int main() { int n; double num; int a, b, c; while (cin >> n&&n) { a = b = c = 0; while (n--) { cin >> num; if (num > 0) { a++; } if (num == 0) { b++; } if (num < 0) { c++; } } cout << c << " " << b << " " << a << endl; } system("pause"); return 0; }
以上是关于hdu 2008 数值统计的主要内容,如果未能解决你的问题,请参考以下文章