C 语言实例 - 循环输出26个字母
C 语言教程
· 2019-02-20 19:43:51
循环输出 26 个字母。
实例
#include <stdio.h>
int main()
{
char c;
for(c = 'A'; c <= 'Z'; ++c)
printf("%c ", c);
return 0;
}
运行结果:
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
实例 - 输出大写或小写字母
#include <stdio.h>
int main()
{
char c;
printf("输入 u 显示大写字母,输入 l 显示小写字母: ");
scanf("%c", &c);
if(c== 'U' || c== 'u')
{
for(c = 'A'; c <= 'Z'; ++c)
printf("%c ", c);
}
else if (c == 'L' || c == 'l')
{
for(c = 'a'; c <= 'z'; ++c)
printf("%c ", c);
}
else
printf("Error! 输入非法字符。");
return 0;
}
运行结果:
输入 u 显示大写字母,输入 l 显示小写字母: l a b c d e f g h i j k l m n o p q r s t u v w x y z
点击查看所有 C 语言教程 文章: https://www.codercto.com/courses/l/17.html
XMPP
Peter Saint-Andre、Kevin Smith、Remko TronCon / O'Reilly Media / 2009-5-4 / USD 39.99
This practical book provides everything you need to know about the Extensible Messaging and Presence Protocol (XMPP). This open technology for real-time communication is used in many diverse applicati......一起来看看 《XMPP》 这本书的介绍吧!