C++代码 for循环 求余 整除 数组保存每位数值 逆序输出 摘要:解题思路:for循环 求余 整除 数组保存每位数值 逆序输出注意事项:暂时不明参考代码:#include<iostream>using namespace std;int main(){ int…… 题解列表 2021年12月28日 0 点赞 0 评论 301 浏览 评分:0.0
混子代码你值得拥有! 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ char arr[4] = {0}; for(int i …… 题解列表 2023年12月26日 0 点赞 0 评论 45 浏览 评分:0.0
题目 1034: 秒杀!!! 摘要:解题思路:直接看成是字符串 ,秒杀注意事项:参考代码:#includeusing namespace std;int main(){ string a; cin >> a; f…… 题解列表 2024年05月05日 0 点赞 0 评论 74 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;void add(string num){ for (int i = 0;i < num.le…… 题解列表 2021年01月25日 0 点赞 0 评论 230 浏览 评分:0.0
[编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s,b;int main(){ cin>>s; for(int …… 题解列表 2022年05月06日 0 点赞 0 评论 109 浏览 评分:0.0
小白,看看就行,不动脑袋 摘要:解题思路:注意事项:参考代码#include<iostream>#include<string>using namespace std;int main(){ string s; cin>…… 题解列表 2024年10月16日 0 点赞 0 评论 106 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.8 (C++代码) 摘要:解题思路: while输入,判断小于等于四位数就break;输出千位,加个空格,以此类推。注意事项:参考代码:#include <iostream>using namespace std;int ma…… 题解列表 2018年08月09日 0 点赞 0 评论 472 浏览 评分:0.0
C语言字符串 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[5]; gets(a); for(int i=0;i<3;i++) …… 题解列表 2022年11月06日 0 点赞 0 评论 56 浏览 评分:0.0
[编程入门]自定义函数之数字分离-题解(C++代码) 摘要:题目限制是一个四位数,更加优化来说,如果不指定是多少位数,即输入数字位数是随机的,也要能正确分离出每一位,这里有一个简单解法 ```cpp #include #include using na…… 题解列表 2020年01月19日 0 点赞 0 评论 262 浏览 评分:0.0
c++题解 1034: [编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int check(int a){ int gewei = a%10; int …… 题解列表 2023年03月15日 0 点赞 0 评论 78 浏览 评分:0.0