字符串解题,代码简短简单 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string str; getline(cin,…… 题解列表 2021年12月16日 0 点赞 0 评论 697 浏览 评分:0.0
1009: [编程入门]数字的处理与判断 摘要:参考代码:#include <stdio.h>#include <string.h>int main(){ char str[5]; scanf("%s",str); int len…… 题解列表 2021年12月16日 0 点赞 0 评论 360 浏览 评分:0.0
1136: C语言训练-求具有abcd=(ab+cd)2性质的四位数 摘要:#include<bits/stdc++.h> using namespace std; int main(){ string s,s1,s2; for(int i=10…… 题解列表 2021年12月17日 0 点赞 0 评论 352 浏览 评分:0.0
使用函数的定义和调用 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int x=0,y;void cst();/* run this program using…… 题解列表 2021年12月17日 0 点赞 0 评论 285 浏览 评分:0.0
话费计算Java超简单 摘要:解题思路:直接多少分中乘一下0.4就好了,他自己会加小数的注意事项:不要想麻烦了参考代码:package com.itheima;import java.util.Scanner;public cla…… 题解列表 2021年12月17日 0 点赞 0 评论 746 浏览 评分:0.0
贷款计算而已嘛 摘要:解题思路:全放在最后输出的时候就好了注意事项:最后输出的时候要是int参考代码:package com.itheima;import java.util.Scanner;public class Te…… 题解列表 2021年12月17日 0 点赞 0 评论 343 浏览 评分:0.0
不是吧不是吧这也看? 摘要:解题思路:把手拿出来注意事项:睁开眼睛参考代码:package com.itheima;import java.util.Scanner;public class Text28 { public st…… 题解列表 2021年12月17日 0 点赞 0 评论 501 浏览 评分:0.0
1112: C语言考试练习题_一元二次方程 摘要:#include<bits/stdc++.h> using namespace std; int main(){ double a,b,c; cin >> a >> b…… 题解列表 2021年12月17日 0 点赞 0 评论 433 浏览 评分:0.0
使用递归解决这道题目 摘要:解题思路:使用递归解决这道题 非常easy注意事项:理解递归参考代码:#include<iostream>#include<string>using namespace std;string f(i…… 题解列表 2021年12月17日 0 点赞 0 评论 345 浏览 评分:0.0
1505: 蓝桥杯算法提高VIP-单词个数统计 摘要:#include<bits/stdc++.h> using namespace std; int main(){ string s; getline(cin,s); …… 题解列表 2021年12月17日 0 点赞 0 评论 247 浏览 评分:0.0