题解列表
运用strtok函数和动态分配函数解决
摘要:参考代码:#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
char str[5000];
ch……
大小写转换(C语言代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char ch[100]; while(gets(ch)){//while多……
题解 2768: 与圆相关的计算
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ double r; scanf("%lf",&r); pr……
题解 1267: A+B Problem
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<……
王牌花色详细解法,新手小白也能懂
摘要:# 王牌花色
**思路很重要,细心也很重要**
## 这里要多次多组输入,这就增加了难度,同时它也降低了难度,因为我们只需手动输入一个王牌花色字符,再用玩家的牌的花色与输入的王牌花色字符匹……
题解 2754: 其他基本数据类型存储空间大小
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ cout<<sizeof(bool)<<' ……