摘要:
本题要求实现函数,可以返回一个给定月份的英文名称。函数getmonth应返回存储了n对应的月份英文名称的字符串头指针。如果传入的参数n不是一个代表月份的数字,则返回空指针NULL。 #include <stdio.h> char *getmonth( int n ); int main(){ int 阅读全文
摘要:
本题要求实现一个函数,统计给定区间内的三位数中有两位数字相同的完全平方数(如144、676)的个数。 #include <stdio.h>#include <math.h> int search( int n ); int main(){ int number; scanf("%d",&number 阅读全文
摘要:
输入一个整数,输出每个数字对应的拼音。当整数为负数时,先输出fu字。输入在一行中给出一个整数,如:1234。在一行中输出这个整数对应的拼音,每个数字的拼音之间用空格分开,行末没有最后的空格。如 yi er san si。 #include <stdio.h>int count(int x);int 阅读全文