题解列表

筛选

2758 打印ASCII码(c++)

摘要:解题思路:#include <bits/stdc++.h>using namespace std;int main(){        char a;        cin>>a;        co……

题解 2760: 整型与布尔型的转换

摘要:解题思路:最好先定义两个整形,到后面麻烦。注意事项:题目有些绕,要看懂。参考代码:#include <bits/stdc++.h>using namespace std;int main(){    ……

你怎么知道我单抽出金

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    cout<<sizeof(bool)<<" "<<s……

题解 1267: A+B Problem

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a,b;    cin>>a>>b;    cout<<……