码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 1000+1089~1096 题解

时间:2020-01-25 18:16:54      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:print   code   hdu 1000   color   iostream   scanf   题目   sum   中文   

1000:

英文题目:

技术图片

 

 

中文题解:

技术图片

 

 

 题解:

#include<iostream>
using namespace std;

int main()
{
int a, b;
int num = 0;
while (cin >> a >> b)
{
num = a + b;
cout << num << endl;
}
system("pause");
return 0;

}

1089

英文题目:

技术图片

 

 

 中文题目:

技术图片

 

 

题解:

#include<iostream>
using namespace std;

int main()
{
    int a, b;
    while (cin >> a >> b)
    {
        cout << a + b << endl;
    }

    system("pause");
    return 0;
}

1090

英文题目:

技术图片

 

 

 中文题目:

技术图片

 

 

 题解:

#include<iostream>
using namespace std;

int main()
{
    int a, b;
    int T;
    cin >> T;
    while (T--)
    {
        cin >> a >> b;
        cout << a + b << endl;
    }
    system("pause");
    return 0;
}

1091

英文题目:

技术图片

 

 中文题目:

技术图片

 

 题解:

#include<iostream>
using namespace std;

int main()
{
    int a, b;
    while (cin >> a >> b)
    {
        if (a == 0 && b == 0)
        {
            ;
        }else{

            cout << a + b << endl;
            }

    }
    system("pause");
    return 0;
}

1092:

英文题目:

技术图片

 

 中文题目:

技术图片

 

 题解:

#include <stdio.h>
#include<stdlib.h>
int main()
{
    int n, number, sum;
    while (scanf("%d", &n), n)
    {
        sum = 0;
        while (n--)
        {
            scanf("%d", &number);
            sum += number;
        }
        printf("%d\n", sum);
    }
    system("pause");
    return 0;
}

1093

英文题目:

技术图片

 

 中文题目:

技术图片

 

 题解:

#include<iostream>  
using namespace std;
int main()
{
    int num;
    while (cin >> num)
    {

        int n;
        while ((num--) && (cin >> n))
        {
            if (n != 0)
            {
                int i, sum = 0;
                while ((n--) && (cin >> i))
                {
                    sum += i;
                }
                cout << sum << endl;
            }
            else
                break;
        }
    }
    system("pause");
    return 0;
}

1094

英文题目:

技术图片

 

 中文题目:

技术图片

 

 题解:

#include<iostream>
using namespace std;

int main()
{
    int n, num, sum;
    while (cin >> n)
    {
        sum = 0;
        while (n--)
        {
            cin >> num;
            sum += num;
        }
        cout << sum << endl;
    }

    system("pause");
    return 0;
}

1095

英文题解:

技术图片

 

 中文题解:

技术图片

 

 题解:

#include<iostream>
using namespace std;
int main()
{
    int a, b;
    while (cin >> a >> b)
    {
        cout << a + b << endl << endl;
    }

    system("pause");
    return 0;
}

1096:

英文题解:

技术图片

 

 中文题目:

技术图片

 

 题解:

#include<iostream>
using namespace std;
int main()
{
    int n, t, mun, sum;
    cin >> n;
    while (n--&&cin>>t)
    {
        sum = 0;
        while (t--)
        {
            cin >> mun;
            sum += mun;
        }
        cout << sum << endl << endl;

    }

    system("pause");
    return 0;
}

 

hdu 1000+1089~1096 题解

标签:print   code   hdu 1000   color   iostream   scanf   题目   sum   中文   

原文地址:https://www.cnblogs.com/pcdl/p/12233216.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!