被打爆了
转义一下就好
#include<bits/stdc++.h> using namespace std; int main() { cout << "\"" << "Welcome to Jinghong Union." << "\""; return 0; }
#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; }
#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; }
#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; }