C语言:输入一个字符,输出ASCII码比它大5的字符 Posted by: NOTEPAD 2015年11月17日 Leave a comment #include<stdio.h> int main() { printf("请输入一个字符:"); char c; scanf("%c",&c); printf("输出ASCII码比它大5的字符:%c\n",c+5); return 0; } 2015-11-17 NOTEPAD
C语言:华氏温度转摄氏温度 2016年1月6日 C语言 Leave a comment #include<stdio.h> void main() { float f,c; printf("请 ... ...
C语言:任意输入5个数,统计其中的正数、负数和零的个数 2016年1月5日 C语言 Leave a comment #include<stdio.h> #define N 5 void fun(); int main() ... ...