#include<stdio.h>struct student{ char name[9]; long no; int score[4];};void input(struct student stu[100],int n){ int i; for(i=1;i<=n;i++) { scanf("%l ...
分类:
编程语言 时间:
2020-02-06 20:21:54
阅读次数:
69
源程序: #include <iostream>using namespace std;class point{private: float x;public: void f(float a) { x = a; } void f() { x = 0; } friend float max(point ...
分类:
其他好文 时间:
2020-02-06 20:15:42
阅读次数:
68
1、对大学生成绩大于60分的,输出“合格”,低于60分的,输出“不合格”。使用switch-case结构,可以取模 1 package com.book.demo; 2 3 public class SwicthCase { 4 public static void main(String[] ar... ...
分类:
其他好文 时间:
2020-02-06 18:19:34
阅读次数:
105
【题解】字母 (letter) 没有传送门。 【题目描述】 给定一个字符串 $\text{S}$,现取出 $\text{S}$ 的所有子串,并按字典序从小到大排序,然后将这些排好序的字符串首尾相接,记为字符串 $\text{T}$。共有 $\text{Q}$ 次询问,每次询问 $\text{T}$ ...
分类:
其他好文 时间:
2020-02-06 18:11:09
阅读次数:
84
Metro是微软的一贯设计风格,相对Google的Material Desgin ,Metro更加的简洁,清晰明了。 Material 的设计也是很不错的,而且在Android,Web上都能经常看到Material的设计风格,这两者的差异我就不说了。 Metro的设计风格是什么样的? 比如这个,Wi ...
分类:
其他好文 时间:
2020-02-06 18:10:25
阅读次数:
71
/** * FileName: Main * Author: Jerry * Date: 2020/1/27 19:58 * Description: 多重背包 */ public class Main { /* *int []num 每种商品的最大售卖数 * V 背包最大容积 * N 商品种类数 ...
分类:
其他好文 时间:
2020-02-06 16:26:54
阅读次数:
64
虽说第一篇博客应该是 ,但是错过第一篇,只好在这补上啦。 开启新世纪的大门:Hello,world! ...
分类:
其他好文 时间:
2020-02-06 14:43:55
阅读次数:
46
Shortest PrefixesDescriptionA prefix of a string is a substring starting at the beginning of the given string. The prefixes of “carbon” are: “c”, “ca”... ...
分类:
其他好文 时间:
2020-02-06 14:27:50
阅读次数:
78
23 May 2017» Hardware注:STM32F407VGT6 with STM32F4 DSP and standard peripherals library v1.8.0外部中断源码//中断服务函数void EXTI2_IRQHandler(void){ delay_ms(10); ... ...
分类:
其他好文 时间:
2020-02-06 13:05:01
阅读次数:
137
最近折腾了swift的语音录制识别和转码,这块还是比较坑的,由于语音识别的准确度实测大概也就80%左右,所以还是需要上传录音文件啊。首先是用讯飞语音SDK实现语音录制和识别(语音听写),第一个坑是讯飞SDK只录制了PCM格式的文件,这个文件是原始格式,默认比较大,另外播放器支持也不好,因此需要先把它... ...
分类:
移动开发 时间:
2020-02-06 13:00:45
阅读次数:
100