/*显示两行文字*/ #include<stdio.h> int main(void) { printf("Programming is fun. "); printf("And programming in C is even more fun! "); return 0; }