题解列表

筛选

你怎么知道我单抽出金

摘要:解题思路:注意事项:参考代码:#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<<……

题解 2768: 与圆相关的计算

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){   double r;   scanf("%lf",&r);   pr……

字符串处理回文数

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string.h>using namespace std;int main(){ int n; int sum=0,……

大小写转换(C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char ch[100]; while(gets(ch)){//while多……