c语言巧妙解答(小白) 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS 1#include<stdio.h>int fun(int n){ int b, flag = 1; fo…… 题解列表 2021年12月18日 0 点赞 0 评论 417 浏览 评分:0.0
[编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class 自定义函数之字符串连接 { public static void main(…… 题解列表 2021年12月18日 0 点赞 0 评论 327 浏览 评分:0.0
我的最简单(我说的) 摘要:解题思路:找规律注意事项:参考代码:#include<stdio.h>int main(){ int T; scanf("%d",&T); while(T--) { int x; scanf("%…… 题解列表 2021年12月18日 0 点赞 0 评论 452 浏览 评分:0.0
自定义函数输出原音字符 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>#include <string.h>void fu(char…… 题解列表 2021年12月19日 0 点赞 0 评论 627 浏览 评分:0.0
自定义函数分离字符 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>#include <string.h>fen(char a[4…… 题解列表 2021年12月19日 0 点赞 0 评论 372 浏览 评分:0.0
1060: 二级C语言-同因查找 摘要:解题思路:将10-1000之间的数循环再将循环的数对2,3,7取余输出注意事项:参考代码:public class Main {public static void main(String[] arg…… 题解列表 2021年12月19日 0 点赞 0 评论 799 浏览 评分:0.0
1026: [编程入门]数字逆序输出 摘要:解题思路:创建一个10个长度的整型数组,在控制台输入10个数,再用for循环将数组的最后一位当首位依次输出注意事项:控制台输入的数不要超出数组长度参考代码:Scanner in = new Scann…… 题解列表 2021年12月19日 0 点赞 0 评论 486 浏览 评分: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 评论 467 浏览 评分:0.0
1979: 求平均工资 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,a[n],he=0; cin>>n;…… 题解列表 2021年12月19日 0 点赞 0 评论 461 浏览 评分:0.0
1027: [编程入门]自定义函数处理最大公约数与最小公倍数 摘要:参考代码:#includeint fun1(int a,int b){ int yue=1,j=a,k=b; if(j>k){ j=b,k=a; } for(in…… 题解列表 2021年12月19日 0 点赞 0 评论 439 浏览 评分:0.0