统计字符串—公约公倍数—计负均正

//东北大学秦皇岛oj刷题ing
//[http://oj.acmclub.cn/problem.php?id=1007](http://oj.acmclub.cn/problem.php?id=1007)
#include
#include
using namespace std;
int main()
{
    int a[20],count=0,ans=0;
    for(int i=0;i<20;i++)
    {
      scanf("%d",&a[i]);
      if(a[i]<0)
         count++;
     else
         ans+=a[i]; 
}
printf("%d\n",count);
printf("%.2f",(float)ans/(20-count));
    return 0;
 } 
//其实我最讨厌,公约公倍数啥的了=.=
//[http://oj.acmclub.cn/problem.php?id=1008](http://oj.acmclub.cn/problem.php?id=1008)
#include
#include
using namespace std;
//最大公约数(欧几里得算法—迭代法(递推法)) 
int gcd(int m,int n)
{
    while(m>0)
    {
        int c=n%m;
        n=m;
        m=c;
    }
    return n;
}
//还有一种写法是 只有一句return (m==0)?n:gcd(n%m,m);

// 最小公倍数
long lcm(int x,int y)
{
    return (x*y)/gcd(x,y);
    //最小公倍数=两数的乘积/最大公约数,所以可在最大公约数的基础上求最小公倍数 
}

int main()
{
    int a,b;
    scanf("%d%d",&a,&b);
    cout<return 0;
 } 
//统计字符,考虑到空格的问题 
//[1009-统计字符](http://oj.acmclub.cn/problem.php?id=1009)
#include
#include
using namespace std;
int main()
{
    int count,blank,num,other;
    count=blank=num=other=0;
    char e;
    while((e=getchar())!='\n')
    {
        if((e>='a'&&e<='z')||(e>='A'&&e<='Z'))
            count++;
        else if(e==' ')
            blank++;
        else if(e>='0'&&e<='9')
            num++;
        else{
             other++;   
        }

     } 
     printf("%d\n%d\n%d\n%d\n",count,blank,num,other);
     return 0;
}

你可能感兴趣的:(NEUQ)