上一页 1 ··· 49 50 51 52 53 54 55 56 57 ··· 72 下一页

2019年3月8日

技巧

摘要: DEVc++ 在编译时要把之前的窗口都必须关掉才可以再次编译 阅读全文

posted @ 2019-03-08 15:19 cltt 阅读(98) 评论(0) 推荐(0)

poj 1321

摘要: 在一个给定形状的棋盘(形状可能是不规则的)上面摆放棋子,棋子没有区别。要求摆放时任意的两个棋子不能放在棋盘中的同一行或者同一列,请编程求解对于给定形状和大小的棋盘,摆放k个棋子的所有可行的摆放方案C。 Input 输入含有多组测试数据。 每组数据的第一行是两个正整数,n k,用一个空格隔开,表示了将 阅读全文

posted @ 2019-03-08 10:43 cltt 阅读(96) 评论(0) 推荐(0)

2019年3月3日

字符串函数

摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 using namespace std; 10 char s[10],t[10]; 11 int main() 12 { 13 /* 14 scanf("%s%s... 阅读全文

posted @ 2019-03-03 11:30 cltt 阅读(153) 评论(0) 推荐(0)

string

摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 using namespace std; 8 string s[100]; 9 int main() 10 { 11 for(int i=0;i>s[i]; 13 } 14 sort(s,s+5);//自动... 阅读全文

posted @ 2019-03-03 11:11 cltt 阅读(239) 评论(0) 推荐(0)

2018年12月28日

二进制减法

摘要: 每一位不够减了,就借2,借的是上一位的,那么到了上一位时,还要还-1 阅读全文

posted @ 2018-12-28 21:09 cltt 阅读(1880) 评论(0) 推荐(0)

2018年12月27日

DOS中断及程序调用

摘要: http://www.cnblogs.com/ynwlgh/archive/2011/12/12/2285017.html 阅读全文

posted @ 2018-12-27 15:42 cltt 阅读(456) 评论(0) 推荐(0)

2018年12月16日

多种连接

摘要: https://blog.csdn.net/yuliangliang092/article/details/51075366 阅读全文

posted @ 2018-12-16 22:36 cltt 阅读(195) 评论(0) 推荐(0)

2018年12月7日

倍数关系

摘要: 牛客练习赛33 B tokitsukaze and RPG tokitsukaze最近沉迷一款RPG。这个RPG一天有k分钟,每一天从第1分钟开始。有n种怪物,第i种怪物每天第一次出现的时间为Xi分钟,第二次出现的时间为2*Xi分钟,第三次出现的时间为3*Xi分钟......同一时刻出现的怪物种类越 阅读全文

posted @ 2018-12-07 22:17 cltt 阅读(343) 评论(0) 推荐(0)

2018年12月5日

f触发器、存储过程

摘要: drop trigger trig_insert--删除触发器 阅读全文

posted @ 2018-12-05 09:27 cltt 阅读(223) 评论(0) 推荐(0)

2018年12月4日

外键、主键

摘要: 1 --查询外键约束名 2 --SELECT name 3 -- FROM sys.foreign_key_columns f 4 -- JOIN sys.objects o 5 -- ON f.constraint_object_id = o.object_id 6 -- WHERE f.parent_object_id = OBJECT_ID('表名'); 阅读全文

posted @ 2018-12-04 22:17 cltt 阅读(149) 评论(0) 推荐(0)

上一页 1 ··· 49 50 51 52 53 54 55 56 57 ··· 72 下一页

导航