My Blog

Thoughts, tutorials, and insights on technology and development

数组

#include <stdio.h> int main (void) {   const int number = 10;   int x;   int count [number];   int i;   for (i = 0; i < number; i++) {...
Read More

数字拼音

#include <stdio.h> int main () {   int x;   printf("请输入一个整数:");   scanf("%d",&x);   if (x < 0) {     pri...
Read More