摘要:
触发器:分为两种DML和DDL前一种是针对insert,update,delete的后一种是针对alter drop create trigger 触发器 on stu for insert as if(select scoer from inserted)<0 begin print ' ' rollback end go 阅读全文
摘要:
C和C++混合编程,C源文件中会调用C++源文件中定义的函数int func_cpp(int),C++也会调用C源程序中定义的函数int func_c(int),请组织程序的结构c.c, cpp.cpp, pro.h//pro.h#ifndef PRO_H#define PRO_H#ifdef _cplusplusextern "c"{#endifint func_cpp(int);int func_c(int);#ifdef _cplusplus}#endif#endif//c.c#include "pro.h"int func_c(int){.... 阅读全文
摘要:
无非是把背包的性价比排序,然后加入背包即可#include<algorithm>#include<iostream>using namespace std;typedef struct Thing{ double v; double w;}Thing;Thing arr[100];int n;double w;bool cmp(Thing a,Thing b){ return a.v/a.w>b.v/b.w;}int main(){ cin>>n; cin>>W; for(int i=0;i<n;++i) cin>>arr 阅读全文
摘要:
把一个正数分拆:Pk(n)=P1(n-k)+P2(n-k)+...+Pk(n-k);有一个推论:Pk(n)=P(k-1)(n-1)+Pk(n-k);写出递推公式,然后做题就可以了吧 阅读全文