SQL SERVER 题
某商品价格表如下,ID是自增长列
表名是JGTable,上面是表的结构
题目是:请查出当前时间800001商品的价格,设当前时间是curdate=2017-01-02
答案:select Price 价格 from JGTable where Date1 <‘2017-01-02’ and date2 >‘2017-01-02‘
请安排2017年五一假期(2017-05-01到2017-05-03)的促销价格为79.90
答案是:insert into JGTable (ID,NO,Price,Date1,date2,bk) values (15,800001,79.90,‘2017-05-01’,‘2017-05-03’,‘五一促销’)
c#
1.用循环求出自然数1到n的和。
答案是:
1 public static int Mangg(int n) 2 { 3 4 int w = 0; 5 for (int i = 0; i < n + 1; i++) 6 { 7 w += i; 8 } 9 return w; 10 }
2.用递归求出自然数1到n的积
答案是:
1 public static int MIK(int n) 2 { 3 if (n == 1) 4 return 1; 5 else 6 return n * MIK(n - 1); 7 }
时间: 2024-10-13 21:13:56