题解 1671: 小九九 摘要:解题思路:注意事项:#include <bits/stdc++.h>using namespace std;int main(){ for (int i=1;i&l…… 题解列表 2025年01月12日 0 点赞 0 评论 17 浏览 评分:0.0
小九九题解记得给好评 摘要:解题思路:注意事项:注意打印乘积结果是用列乘以行!!!不是行乘以列!!!参考代码:#include<bits/stdc++.h>using namespace std;int main()…… 题解列表 2025年01月12日 0 点赞 0 评论 12 浏览 评分:0.0
编写题解 1671: 小九九 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ for (int i=…… 题解列表 2025年01月12日 0 点赞 0 评论 18 浏览 评分:0.0
编写题解 2007: 计算输入数据的和与乘积 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){i…… 题解列表 2025年01月12日 0 点赞 0 评论 25 浏览 评分:0.0
编写题解 1015: [编程入门]求和训练python 摘要:参考代码:a,b,c=map(int,input().split())s1=0s2=0s3=0for i in range(1,a+1): s1+=ifor i in ran…… 题解列表 2025年01月12日 0 点赞 0 评论 21 浏览 评分:0.0
while的你会了,来学习一下for吧 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,i,sum; for(;;){ scanf("%d",&…… 题解列表 2025年01月12日 0 点赞 0 评论 18 浏览 评分:0.0
在我上一个题解基础下,加上前面那个scanf就可以了 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,i,sum,j,p;//注意多定义两个 scanf("…… 题解列表 2025年01月12日 0 点赞 0 评论 13 浏览 评分:0.0
还是for循环 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,i,sum; for(;;){ if (scanf(&quo…… 题解列表 2025年01月12日 0 点赞 0 评论 16 浏览 评分:0.0
还是大家喜欢的for循环 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int n, i, sum,j; scanf…… 题解列表 2025年01月12日 0 点赞 0 评论 14 浏览 评分:0.0
会调用函数就可以 摘要:解题思路:注意事项:注意比较输入两个数的大小参考代码:#include <stdio.h>int c(int n) { int length = 1; // 初始…… 题解列表 2025年01月12日 0 点赞 0 评论 17 浏览 评分:0.0