题解列表
二级c语言-计负均正
摘要:解题思路:注意事项:参考代码:#include"stdio.h"
int main(){
double sum=0;
int ans=0;
int d;
for(int i=0;i<……
计算矩阵边缘元素之和
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n; int i=0,j=0; int a[100][100]={0}; i……
编写题解 2880: 计算鞍点
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int max[5]={0}; int min[5]={0}; int i=0,j=0; ……
1431蓝桥杯2014年第五届真题-分糖果题解
摘要:解题思路:运用列表里面最后一个数据的索引可以是n-1也可以是-1,来进行遍历注意事项:参考代码:n= int(input()) #一开始为了方便自己查看,输入里面有个‘人数’,然后一直错误list……
简单的fot循环语句即可
摘要:解题思路:注意事项:参考代码:# include <stdio.h>int main(void){ int a,n,i; int Sn; scanf("%d", &n); a = 0; Sn = 0;……
自定义函数之数字分离(数组版)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>char a[81],b[81];int i;char c=' ';void f()……