摘要:
//1*11*111*1111*11111+? int q = 0; long sum = 0; for (int i = 0; i < 10; i++) { q = q * 10 + 1; sum = sum + q; //an=(10^n -1)/9 } Console.WriteLine(sum); 阅读全文
摘要:
---重复数据中取最大最小值,而且不同类型只显示一条--CREATE TABLE test_aa(--a INT,--b VARCHAR(20) --)--INSERT into test_aa(a,b) VALUES(1,'aa')--INSERT into test_aa(a,b) VALUES(14,'aa')--INSERT into test_aa(a,b) VALUES(11,'ab')--INSERT into test_aa(a,b) VALUES(12,'ac')--INSERT into test_aa(a,b 阅读全文