1. ホーム

ビット演算が表示される 【警告】多文字文字定数

2022-02-22 23:14:11
/* 以下の警告については、一般的に、'. スペースがないことを確認すると、警告が継続されるか、次のページが表示されます。



*/



#インクルード 



#インクルード 



main()



{



      char c;



      int a,b;



      int n;



      printf("操作したい最初の数値の値を入力してください:");



      scanf("%d",a)。



      printf("Ⅻn")。



      printf("操作したい2番目の数値の値を入力してください:")。



      scanf("%d",b)。



      printf("\n");



      printf("Ⅻn")。







      printf("実行したい操作を確認してください:")。



      scanf("%c",c)。



      switch(c){



                case '&':printf("The result of the operation is: ",a&b);break。



                case '|':printf("The result of the operation is: ",a|b);break。



                case '^':printf("The result of the operation is: ",a^b);break。



                case '~':printf("The result of the operation is:",~a,~b);break.Case'~':printf("操作の結果は次のとおりです。



                case '<<':



                     printf("左シフトしたいビット数nを確認してください:")。



                     printf("\n");



                     printf("The result of the operation is: ",a<<n,b<<n)となります。



                     を破る。



                case '>>':



                     printf("右シフトしたいビット数nを確認してください:")。



                     printf("\n");



                     printf("The result of the operation is: ",a>>n,b>>n);



                     を破る。



                default :printf("Your input was incorrect, please re-enter! ")入力が正しくありません。



                }



      system("pause")を使用します。







}