精弘网络暑期 C++ 考核赛

2021/9/17 17:05:12

本文主要是介绍精弘网络暑期 C++ 考核赛,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

被打爆了

A.Jinghong Union

转义一下就好

#include<bits/stdc++.h>
using namespace std;
int main() {
    cout << "\"" << "Welcome to Jinghong Union." << "\"";
    return 0;
}

B.i18n and l10n

#include<bits/stdc++.h>
using namespace std;

char s[200];

int main() {
    cin >> s;
    int len = strlen(s);
    cout << s[0] << len - 2 << s[len - 1];
    return 0;
}

C.Digits

#include<bits/stdc++.h>
using namespace std;

int n;

int f(int x) {
    int cnt = 0;
    while(x != 0) {
	cnt += x % 10;
	x = x / 10;		
    }
    return cnt;
}

int main() {
    cin >> n;
    if(n % f(n) == 0) cout << "Yes";
    else cout << "No";
    return 0;
}

D.Sum

#include<bits/stdc++.h>
using namespace std;

int k, s, ans;

int main() {
    cin >> k >> s;
    for(int i = 0; i <= k; i++)
	for(int j = 0; j <= k; j++)
	    if(i + j <= s && i + j + k >= s) ans++;
    cout << ans;
    return 0;
}


这篇关于精弘网络暑期 C++ 考核赛的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程