摘要:
行號: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 閱讀全文