本文介绍了C使用文字变数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

为什么此代码不起作用

why this Code is Not Working

 void main()
 {
char op;
do
{
      printf("Hello ");

  printf("\nPress Y for continue and N for Exit");
  scanf("%c",&op);
}while(op == 'Y' || op == 'y');
 }



请帮助我,如果我将op用作整数并应用条件"while(op> 0)"
,类似的代码将起作用



plz help me out similar code will working if i take op as integer and apply condition "while(op > 0)"

[edit]Code block added - OriginalGriff[/edit]

推荐答案


char op;
    do
    {
       printf("Hello ");

      printf("\nPress Y for continue and N for Exit\t");

      scanf("%c",&op);

    }while(op == 'y' || op == 'Y' ||op =='\n');


这篇关于C使用文字变数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 09:22