JAVA 输入很重要!!判断是其次 摘要:import java.util.Arrays; import java.util.Scanner; public class Main { public static void main…… 题解列表 2021年12月01日 0 点赞 0 评论 478 浏览 评分:0.0
编写题解 1025: [编程入门]数组插入处理C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10],i,j; for(i=0;i<9;i++) { scanf("%d…… 题解列表 2021年12月01日 0 点赞 0 评论 391 浏览 评分:0.0
1434: 蓝桥杯历届试题-回文数字 摘要: n = int(input().strip()) c =0 def huiwen(s): for i in range(len(s)//2): …… 题解列表 2021年12月01日 0 点赞 0 评论 549 浏览 评分:9.9
自定义函数 摘要:解题思路:求兄弟们看看哪里有问题,提示的是非法访问等注意事项:参考代码:public static void main(String[] args) { Scanner sc = new Scann…… 题解列表 2021年12月01日 0 点赞 0 评论 605 浏览 评分:0.0
猴子吃桃问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i; scanf("%d",&n); int t=1; for(i=1;i…… 题解列表 2021年12月01日 0 点赞 2 评论 364 浏览 评分:9.9
找规律再求和 摘要:解题思路:自定义函数求注意事项:注意每次输出格式参考代码:#include<stdio.h>void factor(int n){ int i,j,sum=0; for(i=1;i<n;i…… 题解列表 2021年12月01日 0 点赞 0 评论 252 浏览 评分:0.0
二级C语言-自定义函数 摘要:#include double fact(double n) { int i; double sum=1.0; for(i=1;i<=n;i++) s…… 题解列表 2021年12月01日 0 点赞 0 评论 298 浏览 评分:9.9
来自欧亚的天才刘磊 摘要:解题思路:这都能不懂了?注意事项:带上你的脑子,和一颗专注且想要求知的心来吧参考代码:int t,n,k=0; scanf("%d",&n); t=n; int i; for(i=0;i<5;i++)…… 题解列表 2021年12月01日 0 点赞 1 评论 494 浏览 评分:9.9
Little Ke's problem 摘要:解题思路:用gets()函数输入字符串就行。注意事项:gets(字符数组)是从键盘将带有空格的字符序列(以回车键结束)全部输入到指定的字符数组中,并自动加字符串结束符“\0”。该函数返回值是字符数组的…… 题解列表 2021年12月01日 0 点赞 0 评论 385 浏览 评分:0.0
结构体之成绩记录(C++) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ char id[20]; char name[20]; int…… 题解列表 2021年12月01日 0 点赞 0 评论 539 浏览 评分:9.9