ACM输入输出 (C++)

(14条未读私信) 牛客竞赛_ACM/NOI/CSP/CCPC/ICPC算法编程高难度练习赛_牛客竞赛OJ (nowcoder.com)

1. A+B(1)

输入两个数 ,返回两者相加结果

输入:

1 5

10 20

输出:

6

30 

#include 
using namespace std;

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

 2. A+B(2)

输入第一行表示下列每一行输入的数据量n

接下来每行输入n个数据

输入:

2

1 5

10 20

输出:

6

30 

#include 
using namespace std;

int main()
{
    int n,a,b;
    cin>>n;
    while(n--){
        while(cin>>a>>b){
           cout<

3. A+B(3)

输入多行数据

知道 a b 都为0时停止

输入:

1 5
10 20
0 0

输出:

 6
30

#include 
using namespace std;

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

 4.A+B(4)

计算一系列的数,每行的第一个数据n为该行的个数 n为0时停止

返回每一行的和 

输入:

4 1 2 3 4
5 1 2 3 4 5
0

 输出:

10
15

#include 
using namespace std;
int main()
{
    int a,b;
    while(cin>>a){
        if(a == 0) break;
        int sum = 0;
        while(a--){
            cin>>b;
            sum += b;
        }
        cout<< sum <

5. A+B(5)


输入的第一行包括一个正整数t(1 <= t <= 100), 表示数据组数。
接下来t行, 每行一组数据。
每行的第一个整数为整数的个数n(1 <= n <= 100)。
接下来n个正整数, 即需要求和的每个正整数。

输入:

2
4 1 2 3 4
5 1 2 3 4 5

输出:

10
15

#include 
using namespace std;
int main()
{
    int n, start, num;
    cin >> n;
    while (n--) {
        int sum{0};
        cin >> start;
        for (int i = 0; i < start; i++) {
            cin >> num;
            sum += num;
        }
        cout << sum <
#include 
using namespace std;

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

 6. A+B(6)

 多组数据,每行表示一组输入数据 换行符终止 ' \n '  并终止计算sum

输入:

 1 2 3
4 5
0 0 0 0 0

输出:

 6
9
0

#include 
using namespace std;

int main()
{
    int n;
    int sum = 0;
    while(cin>>n){
        sum += n;
        if(cin.get()=='\n'){
            cout<

 7. 字符串排序(1)

输入俩行,第一行n

第二行是n个字符串,字符串之间用空格隔开

输入:

 5
c d a bb e

 输出:

a bb c d e

#include 
#include 
#include 
#include 
using namespace std;

int main()
{
    int n;
    cin>>n;
    vector res;
    while(n--)
    {
        string a;
        cin>>a;
        res.push_back(a);
    }
    sort(res.begin(),res.end());
    for(auto s:res){
        cout<

  8. 字符串排序(2)多行

多个测试用例 

多行 换行符结尾 '\n'

输入:

a c bb
f dddd
nowcoder

输入:

 a bb c
dddd f
nowcoder

#include 
#include 
#include 
#include 
using namespace std;
int main(){
    string a;
    vector res; 
    while(cin>>a){
        res.push_back(a);
        if(cin.get()=='\n'){
            sort(res.begin(), res.end());
            for(auto i : res)
            {
                cout<

 8. 字符串排序()逗号隔开

输入:

a,c,bb
f,dddd
nowcoder

输出:

 a,bb,c
dddd,f
nowcoder

#include

using namespace std;

int main() {
    vector vec;
    string s;
    while (getline(cin, s)) {
        int p = 0;
        for(int q = 0; q < s.size(); q++) {
		  p = q;
		  while(p < s.size() && s[p] != ',') {
			p++;
		  }
		  vec.push_back(s.substr(q, p - q));
		  q = p;
	    }
  
        sort(vec.begin(), vec.end());
        
        for (int i = 0; i < vec.size(); ++i) {
            if (i != vec.size() - 1)
                cout << vec[i] << ",";
            else
                cout << vec[i];
        }
        cout << endl;
        vec.clear();
    }
    
    
    return 0;
}

你可能感兴趣的:(ACM,c++,算法,数据结构)