1979: 求平均工资 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,a[n],he=0; cin>>n;…… 题解列表 2021年12月19日 0 点赞 0 评论 252 浏览 评分:0.0
1970: 巨大的数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,a[n],j=1; cin>>n; …… 题解列表 2021年12月19日 0 点赞 0 评论 258 浏览 评分:0.0
1026: [编程入门]数字逆序输出 摘要:解题思路:创建一个10个长度的整型数组,在控制台输入10个数,再用for循环将数组的最后一位当首位依次输出注意事项:控制台输入的数不要超出数组长度参考代码:Scanner in = new Scann…… 题解列表 2021年12月19日 0 点赞 0 评论 294 浏览 评分:0.0
1060: 二级C语言-同因查找 摘要:解题思路:将10-1000之间的数循环再将循环的数对2,3,7取余输出注意事项:参考代码:public class Main {public static void main(String[] arg…… 题解列表 2021年12月19日 0 点赞 0 评论 487 浏览 评分:0.0
自定义函数分离字符 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>#include <string.h>fen(char a[4…… 题解列表 2021年12月19日 0 点赞 0 评论 207 浏览 评分:0.0
1148计算1977! 摘要:#include<stdio.h> #define N 10000 int f(int sum) { int flag=1; while(sum>=10) { sum=sum/…… 题解列表 2021年12月19日 0 点赞 0 评论 352 浏览 评分:6.0
自定义函数输出原音字符 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>#include <string.h>void fu(char…… 题解列表 2021年12月19日 0 点赞 0 评论 322 浏览 评分:0.0
题解 2101: 矩阵面积相交 摘要: #include typedef struct Square { int x1; int y1; int x2; …… 题解列表 2021年12月19日 0 点赞 0 评论 352 浏览 评分:9.9
1050: [编程入门]结构体之成绩记录(java代码) 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2021年12月19日 0 点赞 0 评论 481 浏览 评分:9.9
1585: 蓝桥杯算法训练VIP-链表数据求和操作 摘要:无头结点的单链表,只带尾插函数。#include<bits/stdc++.h> using namespace std; struct node{ double shi,xu; …… 题解列表 2021年12月19日 0 点赞 0 评论 228 浏览 评分:9.0