#include <stdio.h>
#include<stdlib.h>
int main(void)
{
char a='0';//c语言定义变量要放在首位
printf("\n是否登录QQ?\n");
there:printf("(Y or N ?)\n");
scanf("%c",&a); //因为你要输入的是字符,而不是字符串
switch(a)
{
case 'y':case 'Y':
printf("\n正在启动腾讯QQ登录界面,请稍候......\a\a\n");
......................
阅读全部 | 2012年12月4日 00:02