蓝桥杯算法提高VIP-理财计划-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main(){ double p,n,k; cin>>p>>n>>k;…… 题解列表 2020年03月25日 0 点赞 0 评论 771 浏览 评分:0.0
检查金币 百钱百鸡问题 摘要: #include using namespace std; int main(){ int n; while(cin>>n){ int flag = 1; for (…… 题解列表 2020年03月25日 0 点赞 0 评论 747 浏览 评分:8.5
蓝桥杯算法提高VIP-计算质因子-题解(C++代码) 摘要:```cpp #include #include using namespace std; //判断是否是质数 bool zhishu(int n){ bool b=true;…… 题解列表 2020年03月25日 0 点赞 0 评论 847 浏览 评分:0.0
[编程入门]利润计算-题解(C语言代码) 摘要:挨个判断输出. ```c #include int main() { int a,b; scanf("%d",&a); if(a=100000&&a=200000…… 题解列表 2020年03月25日 0 点赞 0 评论 595 浏览 评分:0.0
[编程入门]三个数最大值-题解(C语言代码) 摘要:与1006题重复,详情参见1006题https://blog.dotcpp.com/a/68380 ```c #include int main() { int a,b,c,d; …… 题解列表 2020年03月25日 0 点赞 0 评论 557 浏览 评分:0.0
[STL训练]Ignatius and the Princess IV (C++代码)只做最好的思路! 摘要:窗外的雨稀稀落落,最近有点忧闷啊,小脑袋瓜不怎么转,疫情在家怕是把脑子宅坏了o(╥﹏╥)o。。。 这题看起来挺简单的,就是找出数组中出现频率最高的数,,,呵呵居然没想出好的代码来解决,后来听了少师傅…… 题解列表 2020年03月25日 0 点赞 1 评论 719 浏览 评分:9.9
[编程入门]数字的处理与判断-题解(C语言代码) 摘要:不大于5位数所以大于100000结束,b,c,d,e,f,分别为个十 百 千 万 位,依次判断是否大于零,最后输出. ```c #include int main() { int a…… 题解列表 2020年03月25日 0 点赞 0 评论 1033 浏览 评分:0.0
蓝桥杯算法提高VIP-输入输出格式练习-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; int main(){ string s; cin>>…… 题解列表 2020年03月25日 0 点赞 0 评论 723 浏览 评分:10.0
[编程入门]三个数字的排序-题解(C语言代码) 摘要:依次换位a,b,c,最后输出换位后的a,b,c. ```c #include int main() { int a,b,c,d; scanf("%d%d%d",&a,&b,…… 题解列表 2020年03月25日 0 点赞 0 评论 612 浏览 评分:0.0
二级C语言-温度转换-题解(C语言代码) 摘要:float : scanf %f ; printf %f double : scanf %f ; printf %f %lf (lf不是if) %.2f…… 题解列表 2020年03月25日 0 点赞 1 评论 979 浏览 评分:9.0