摘要:
行号:pow() 列号:column() rem 将所有工作表名称写入到当前工作表第一列 Sub shtName() Dim sht As Worksheet, i As Integer i = 1 For Each sht In Worksheets Cells(i, "A") = sht.Nam 阅读全文
摘要:
SQL查询窗口 选择哪行执行哪行,不选择则从上到下依次执行 delete from xsxx where xsxm is null /****** 删除所有xsxm为null的记录******/ select * from xsxx where xsxm like '张%' //显示所有姓张的记录 阅读全文
摘要:
#include <stdio.h> int main() { int i = 1, sum = 0; while (i <= 100) { sum += 【1】 } printf("1加到100的和为:%d\n", sum); return 0; } #include <stdio.h> int 阅读全文