一个刚刚开始刷题的菜鸟!! 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std;int main(){ int a; while(cin>>a) { for(int i=…… 题解列表 2023年05月20日 0 点赞 0 评论 53 浏览 评分:0.0
程序员的表白 摘要:#程序员的表白c++代码实现 **题目非常俏皮** **......** **原题链接:**[程序员的表白][https://www.dotcpp.com/oj/problem1389.html…… 题解列表 2022年08月28日 0 点赞 0 评论 112 浏览 评分:0.0
程序员的表白(c++)数组做法 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ int a; char b…… 题解列表 2022年06月03日 0 点赞 0 评论 153 浏览 评分:0.0
程序员的表白(c++) 摘要: #include #include #include #include #include #include #include …… 题解列表 2022年02月11日 0 点赞 0 评论 328 浏览 评分:9.9
1389: 程序员的表白 摘要:C++处理字符串真方便#include <bits/stdc++.h> using namespace std; void print(int &n){ string border …… 题解列表 2022年01月11日 0 点赞 0 评论 181 浏览 评分:0.0
程序员的表白-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ int n; while(cin>>n){ for(int i=0;i…… 题解列表 2020年04月20日 0 点赞 0 评论 281 浏览 评分:0.0
程序员的表白-题解(C++代码,没用数组了) 摘要:解题思路: 本题可以不用数组,可以直接打印的,只要观察好‘U’的组成特点就好了。 打印函数: ```cpp void print(int n) { for(int i=0;i…… 题解列表 2020年04月17日 0 点赞 0 评论 629 浏览 评分:9.9
程序员的表白 (C++代码)利用数组,笔刷算法 摘要:解题思路: 建立一个二维数组,参考笔刷的思维,每一个直线的'*'相当于我们画上去的一笔,那么一个U就可以3笔画完,利用while的特性,我们可以模拟出一个笔刷出来,最后再…… 题解列表 2018年11月30日 0 点赞 0 评论 775 浏览 评分:0.0
程序员的表白 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int fun(int n){ int d=n; while(d) …… 题解列表 2018年08月09日 0 点赞 0 评论 727 浏览 评分:0.0
程序员的表白 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std; int main(){ int n; while(cin>>n) { for(i…… 题解列表 2018年08月09日 0 点赞 0 评论 506 浏览 评分:6.0