题解列表
[出圈]-题解(C语言代码)
摘要:```
#include
int main()
{
int i,n,m,count=0,t;
int a[111];
while(~scanf("%d%d",&n,……
[编程入门]最大公约数与最小公倍数-题解(C语言代码)我觉得这是个数学问题
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int a,b,item; scanf("%d %d",&a,&b); int i,j,k; ……
蓝桥杯算法提高VIP-统计单词数-题解(C语言代码)
摘要:# 1556: [蓝桥杯][算法提高VIP]统计单词数
[题目链接](https://www.dotcpp.com/oj/problem1556.html)
```
#include
#inc……
二级C语言-统计字符-题解(C++代码)
摘要:解题思路:1、定义四个变量分别计数不同类型的字符2、根据每个字符的类型进行判断 字母:'A' <= str[i] <= 'Z' || 'a&#……
蓝桥杯2017年第八届真题-正则问题-题解(C语言代码)
摘要:#include <stdio.h>
#include <string.h>
char a[101];
int i=0,l;
int dfs()
{
int temp=0;
int ……
二级C语言-寻找矩阵最值-题解(Java代码)
摘要:参考代码:import java.util.Scanner;
public class test1 {
public static void main(String[] args) {
……
二级C语言-温度转换-题解(C语言代码)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int F; float C; scanf("%d",&F); C=5*(F-32)/9.……
[编程入门]水仙花数判断-题解(C语言代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int n; int j,k,l; for(n=100;n<1000;n++) { ……
二级C语言-阶乘公式求职-题解(Java代码)
摘要:参考代码:import java.util.Scanner;
public class Main {
public static double fact(int k){
doub……