#include int main() { printf("201983270536"); return 0; } #include int main() { printf("hello,Mars!"); return 0; } #include int product(int,int); int ... ...
分类:
其他好文 时间:
2019-10-19 22:17:54
阅读次数:
111
Plus0ne Project RequirementsOverview:Plus0ne is an early stage startup based in San Francisco, California. The product of Plus0ne is a web app for cre ...
分类:
移动开发 时间:
2019-10-19 21:08:26
阅读次数:
116
列的查询 语法1-1 基本的SELECT语句 SELECT <列名>,... FROM <表名>; 语法1-2 查询出表中所有的列 SELECT * FROM <表名>; 星号(*)是代表全部列的意思。使用星号无法设定列的显示顺序。 语法1-3 1.为列设定别名 eg:SELECT product_ ...
分类:
其他好文 时间:
2019-10-19 21:06:28
阅读次数:
151
# include<stdio.h> int product(int,int); int main(void) { int x,y,s; scanf("%d %d","&x,&y); s=product(x,y); printf("The multiple is:%d",s); return 0; ... ...
分类:
其他好文 时间:
2019-10-19 17:43:17
阅读次数:
95
参考:http://database.guide/what-is-a-database-schema/ 在数据库中,schema(发音 “skee-muh” 或者“skee-mah”,中文叫模式)是数据库的组织和结构,schemas andschemata都可以作为复数形式。模式中包含了schema ...
分类:
数据库 时间:
2019-10-18 15:31:33
阅读次数:
123
#include<stdio.h> int main() { printf("hello,mars\n"); return 0; } #include<stdio.h> int product (int,int); int main (void) { int x,y,s; scanf("%d %d"... ...
分类:
编程语言 时间:
2019-10-17 23:14:36
阅读次数:
69
<! flowchart 箭头图标 勿删 前言 自定义字段又叫做“开放模型”,用户可以根据自已的需求,添加需要的字段,实现个性化定制。 使用自定义字段的目的,使用自定义字段解决哪些问题 如现有一套CRM系统,客户模块中客户信息,需要实现不同行业,不同业态都可以个性化需求。那我们知道客户信息表T_CU ...
分类:
编程语言 时间:
2019-10-17 15:28:20
阅读次数:
123
// 求两个整数的乘积#include<stdio.h>int product (int,int);int main(void) { int x,y,s; scanf("%d %d",&x,&y); s = product(x,y); printf("The mul is:%d",s); retur ...
分类:
其他好文 时间:
2019-10-17 01:18:40
阅读次数:
95
题意是在一个装着单词的数组里面,找出两个互相之间没有重复字母的单词(某一个单词自身可以有重复字母,比如foo, test)比如A和B好了,算出A.length() * B.length()的最大值。 思路是用bitmap。可以参考这个帖子,https://leetcode.com/problems/ ...
分类:
其他好文 时间:
2019-10-17 00:56:48
阅读次数:
102
Dev(Developer) :开发 TE(Test Engineer) :测试 PM(Product Manager) :产品 敏捷:快速的响应客户(需求),高效的完成开发,不断的追求完善。 TE在敏捷中应该做些什么呢? 流程1-故事分析 角色: Dev、TE 内容: 需求交接前夕,PM将需求上传 ...
分类:
其他好文 时间:
2019-10-16 23:08:29
阅读次数:
86