编写一个函数,判断参数年份是否为闰年,若是闰年,则返回1,否则返回0.
查看答案
编写一个函数delchar(char *s, char c_h ),该函数将字符串s中出现的所有c_h 所表示的字符删除。
编写一个函数,返回两个正整数的最大公约数(请用非递归或递归方法设计)。
SQLite支持以下哪种数据类型()。
A. 整型
B. 浮点型
C. 文本
D. 以上都支持
创建数据库表,下列语句中正确的是()。
A. create table stu(no integer, name text, sex text, age integer)
B. table stu(no integer, name text, sex text, age integer)
C. create stu(no integer, name text, sex text, age integer)
D. 以上都不对