敲简单C语言代码!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[100][100]; a[0][0]=1; int n; scanf ("%d",&…… 题解列表 2022年10月31日 0 点赞 0 评论 251 浏览 评分:0.0
自定义函数之字符串连接 摘要:解题思路:定义三个数组,两个数组存放输入的数组,最后一个数组存放最终的数组注意事项:利用string函数库中strlen函数计算出个数组中的元素个数参考代码:# include <stdio.h># …… 题解列表 2022年11月01日 0 点赞 1 评论 249 浏览 评分:0.0
蓝桥杯算法提高VIP-打水问题 摘要:解题思路:注意事项:参考代码:import java.util.Arrays; import java.util.Scanner; public class Main { publi…… 题解列表 2022年11月01日 0 点赞 0 评论 294 浏览 评分:0.0
编写题解 1169: 绝对值排序—比较简单的方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { int n,i,j,a[100]; while(…… 题解列表 2022年11月01日 0 点赞 0 评论 284 浏览 评分:0.0
利用sort巧妙解。 摘要:解题思路: 利用sort解题注意事项: 注意sort的用法参考代码:#include<bits/stdc++.h> using namespace std; typedef struc…… 题解列表 2022年11月01日 0 点赞 0 评论 414 浏览 评分:0.0
Minesweeper(c语言) - 代码很简单, 无需动脑 摘要:一遍写完,没做优化,跟着代码走读就能理解参考代码:#include <stdio.h> void InitBoard(char board[100][100], int row, int col) …… 题解列表 2022年11月01日 0 点赞 0 评论 322 浏览 评分:0.0
纯纯无脑暴力求解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j=1,k=3,l=7,o=9; for (i = 1; i <= 4; i++) { print…… 题解列表 2022年11月01日 0 点赞 0 评论 295 浏览 评分:0.0
利润计算——简单思路 摘要:解题思路:if——else-if——else 语句 ;比较直接。注意事项:注意数字的大小参考代码:#include<stdio.h>int main(){ int x,y; scanf("…… 题解列表 2022年11月01日 0 点赞 0 评论 285 浏览 评分:0.0
敲简单C语言代码!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int sc[10000][5]; int i,t; int n,e,f; scanf …… 题解列表 2022年11月01日 0 点赞 0 评论 324 浏览 评分:0.0
三角形的面积 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x1,y1,x2,y2,x3,y3,s,a,b,c,z; …… 题解列表 2022年11月01日 0 点赞 0 评论 401 浏览 评分:0.0