码迷,mamicode.com
首页 >  
搜索关键字:char    ( 35907个结果
Html页基础代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width,initial-scale=1.0" /> <title>数据可视化< ...
分类:Web程序   时间:2021-06-22 17:36:40    阅读次数:0
vvv
#include<stdio.h>#include<string.h>#include<stdlib.h>#include<windows.h>typedef struct student //定义结构体 { char name[20]; //姓名 char num[15]; //学号 char s ...
分类:其他好文   时间:2021-06-21 20:34:02    阅读次数:0
顺序表
#include<stdlib.h> #include<stdio.h> #include<string.h> #define MAX 10005 typedef struct node { char a[16]; int len; }node; node te,t[MAX]; int n=0; v ...
分类:其他好文   时间:2021-06-21 20:33:31    阅读次数:0
题解 P3939 数颜色
Solution 对于兔子们按照颜色为第一关键字 , 位置为第二关键字排序 , 查询个数时直接二分 , 相同颜色的修改不用管 , 不同颜色的修改不会改变统一颜色内的大小顺序 , 直接修改不会影响有序性 . 时间复杂度 \(O(nlogn)\) Code #include<iostream> #inc ...
分类:其他好文   时间:2021-06-21 20:02:00    阅读次数:0
Java中String类型和int类型的互相转换
String和Int的互相转换 用Integer.parseInt(参数),可以把字符串转换成int,然后我想把int转换成String,就用String.valueOf(参数) Integer.parseInt(参数) 参数要求必须是字符串或字符序列,一个char不行,所以在后面加上一个双引号的空 ...
分类:编程语言   时间:2021-06-20 17:50:46    阅读次数:0
MySQL数据类型分类
MySQL支持多种数据类型,大致如下: 1、数值 2、日期时间 日期和实际类型为datetime、date、timestamp、time和year 类型 大小(字节) 范围 格式 用途 DATE 3 1000-01-01/9999-12-31 YYYY-MM-DD 日期值 TIME 3 -838:5 ...
分类:数据库   时间:2021-06-20 17:32:49    阅读次数:0
79. 单词搜索
package leetcode; public class demo_79 { //全局变量,如果找到就返回 int flag=0; public boolean exist(char[][] board, String word) { int[][] visited=new int[board. ...
分类:其他好文   时间:2021-06-19 19:08:36    阅读次数:0
C#——String类
string类型 构造函数 public string(char[] value) public string(char[] value,int offset,int count) 拼接字符串: + or += 比较字符串 public static int Compare(string strA, ...
分类:Windows程序   时间:2021-06-19 19:07:02    阅读次数:0
C语言:输出数字各个位的数字及和
#include <stdio.h> int main() { char sh[13][6]={"个","十","百","千","万","十万","百万","千万","亿","十亿","百亿","千亿","万亿"}; // int cc=0; // for(cc=0;cc<=13;cc++) // ...
分类:编程语言   时间:2021-06-18 19:37:12    阅读次数:0
实验7
#include <stdio.h> #include <stdlib.h> #define N 10 typedef struct student { int num; char name[20]; int score; }STU; int main() { FILE *fin; STU st[N ...
分类:其他好文   时间:2021-06-18 19:14:39    阅读次数:0
35907条   上一页 1 ... 3 4 5 6 7 ... 3591 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!