现实火

文章
2
资源
0
加入时间
2年10月24天

C Primer Plus 第八章 编程练习 1-8题

第一题#include<stdio.h>int main(void){ int Counts = 0; char Letters; printf("Please Input:\n"); while((Letters = getchar()) != EOF) ++Counts; printf("You Had Inputed %d Letters.",Co...