题解列表
在我上一个题解基础下,加上前面那个scanf就可以了
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,i,sum,j,p;//注意多定义两个 scanf("……
while的你会了,来学习一下for吧
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,i,sum; for(;;){ scanf("%d",&……
编写题解 1015: [编程入门]求和训练python
摘要:参考代码:a,b,c=map(int,input().split())s1=0s2=0s3=0for i in range(1,a+1): s1+=ifor i in ran……
编写题解 2007: 计算输入数据的和与乘积
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){i……
编写题解 1671: 小九九
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ for (int i=……
小九九题解记得给好评
摘要:解题思路:注意事项:注意打印乘积结果是用列乘以行!!!不是行乘以列!!!参考代码:#include<bits/stdc++.h>using namespace std;int main()……
题解 1671: 小九九
摘要:解题思路:注意事项:#include <bits/stdc++.h>using namespace std;int main(){ for (int i=1;i&l……
编写题解 2233: 蓝桥杯算法训练-图形显示
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){long long n;cin>>n;……
题解 2819: 数字反转
摘要:解题思路:注意事项:注意第7行要写一个合并数位的小算法;第8行要写一个分解数列的算法参考代码:#include<bits/stdc++.h>using namespace std;int ……