摘要:
Sub Lineups()Dim rng As RangeSet rng = Range("E2:E1501") Dim ac As RangeSet ac = Application.ActiveCell rng.Find(what:=ac).Selectac.Interior.Color = 6 阅读全文
摘要:
#include <stdio.h> //任意输入999-9999之间的任意整数n,如果不在此范围内重新循环输入直到符合条件才继续运行 //输出0到n之间所有能被7 17整除但不能被2整除的数 void main() { long int n,i; printf("please input a po 阅读全文