题解列表
C语言训练-阶乘和数* (C语言代码)
摘要:解题思路:1:计算各位阶乘和 2:符合条件的存入数组 3:按要求排序注意事项:参考代码:#include<stdio.h>int factorial(int x){ int i,t=1; for……
WU-蓝桥杯算法提高VIP-分数统计 (C++代码)
摘要:参考代码:#include<iostream>
#include<algorithm>
using namespace std;
struct T
{
int grade;
cha……
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a=2,n,i,sum1=0,sum=0; scanf("%d",&n); fo……
Tom数 (Java代码)
摘要:解题思路:注意事项:参考代码:
package cn.hui.lanqiaobei02;
import java.util.Scanner;
public class Main111801
{……
蓝桥杯历届试题-蚂蚁感冒 (C++代码)
摘要:#include<iostream>
#include<math.h>
using namespace std;
int main(){
int i,n,right=0,left=0,……
C语言程序设计教程(第三版)课后习题10.7 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>void fun(char a[],char b[],int d,int c);int main(){ int n=0,m=0; ch……
WU-汽水瓶 (C语言代码)
摘要:好好体会把~参考代码:#include<stdio.h>
int bottle(int n)
{
int i=0,j=0,h;
for(h=0;h<n;h++)
{
j++;
……
C语言训练-素数问题 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y,z; scanf("%d",&y); for(x=2;x<y;x++) ……
C语言训练-求车速 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y,z,m,k,p; for(x=95860;x<100000;x++) {……