题解列表
1148计算1977!
摘要:#include<stdio.h>
#define N 10000
int f(int sum)
{
int flag=1;
while(sum>=10)
{
sum=sum/……
自定义函数输出原音字符
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>#include <string.h>void fu(char……
题解 2101: 矩阵面积相交
摘要: #include
typedef struct Square
{
int x1;
int y1;
int x2;
……
1050: [编程入门]结构体之成绩记录(java代码)
摘要:参考代码:import java.util.Scanner;
public class Main {
public static void main(String[] args) {
……
1585: 蓝桥杯算法训练VIP-链表数据求和操作
摘要:无头结点的单链表,只带尾插函数。#include<bits/stdc++.h>
using namespace std;
struct node{
double shi,xu;
……
1048: [编程入门]自定义函数之字符串拷贝(最简)(java代码)
摘要:解题思路: 拿到字符串之后直接截取从 m-1 到 n。注意事项: 字符串截取 传入两个参数:substring(int beginIndex, int en……
1041: [编程入门]宏定义之找最大数(java代码)
摘要:参考代码:import java.util.Scanner;
public class Main{
public static void main(String[] args) {
……
我的最简单(我说的)
摘要:解题思路:找规律注意事项:参考代码:#include<stdio.h>int main(){ int T; scanf("%d",&T); while(T--) { int x; scanf("%……