C码字练习.01.程序框架,打印,函数

C语言的基本框架

#include<stdio.h>
int main(void)
{
   //此处写程序要做的事

   return 0;
}

查看全文 »