1767: 循环入门练习4 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { int sum=0; int…… 题解列表 2023年09月23日 0 点赞 0 评论 313 浏览 评分:0.0
1766: 循环入门练习3 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { int sum=0; int…… 题解列表 2023年09月23日 0 点赞 0 评论 405 浏览 评分:0.0
C语言循环判断解法(简单易懂有注释) 摘要:解题思路:建立bool型数组,通过一般的穷举思路不断判断当下情况,至只剩下最后一个数,取下标注意事项:函数中i作为计数器被反复使用,可以以i=0为界讨论各步骤参考代码:#include<stdio.h…… 题解列表 2023年09月23日 0 点赞 0 评论 493 浏览 评分:9.9
1765: 循环入门练习2 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { int sum=0; for…… 题解列表 2023年09月23日 0 点赞 0 评论 396 浏览 评分:0.0
1764: 循环入门练习1 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { int sum=0; for…… 题解列表 2023年09月23日 0 点赞 0 评论 287 浏览 评分:0.0
1763: sizeof的大作用 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { cout<<sizeof(int)<<…… 题解列表 2023年09月23日 1 点赞 0 评论 394 浏览 评分:0.0
1762: printf基础练习 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { printf("0%o\n0x%x",123456789,123456789); return …… 题解列表 2023年09月23日 0 点赞 0 评论 738 浏览 评分:6.0
1761: 学习ASCII码 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { printf("%d %c",'t',63); return 0; }…… 题解列表 2023年09月23日 3 点赞 3 评论 1791 浏览 评分:9.9
1670: 拆分位数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int main() { int num; cin>…… 题解列表 2023年09月23日 0 点赞 0 评论 355 浏览 评分:0.0
题解 3003: 鸡兔同笼问题 摘要:解题思路:注意事项:参考代码: #include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<(4…… 题解列表 2023年09月23日 0 点赞 0 评论 494 浏览 评分:9.9