-1

よく私はいくつかの宿題のためにこれをコーディングし、それがより良く変更され、さらにいくつかのコメントを使用できることを知っていますが、この1つのエラーは私を殺しています.それは私だけなのか何かなのか疑問に思っています.あなたに。

エラー: 読み取りタイプにデータがありません。

(プログラムのエラーチェックをしていないので、今のところこれらの入力をそのまま使用できます) テスト変数:

2345
AA
20
30
40
50
60
10
R(入ってるはず)だけどプログラムスキップ

rea_type の入力を受け取ることになっていますが、それをスキップして他の行に進みます。

コードは次のとおりです。

  const float deposit  = 1500.00;
const unsigned multiplier =1;
const float rate_One = 6.350;
const float rate_Two = 14.520;
unsigned bill_Cycle = 0,
         no_Days = 0;
float bi_Exch_Rate = 0,
      ba_Exch_Rate = 0;
float cur_Read=0,
      prev_Read=0,
      cur_Usage=0,
      cur_Peri_Charg=0;
char c_Digit[20],
     premis_numb[20];
char rea_type;
/**Information to be collected from the user**/
      system("cls");
      printf("\nPlease enter the customer digits: ");
      scanf("%s",&c_Digit);
      printf("\nPlease enter Premise Number:");
      scanf("%s",&premis_numb);
      printf("\nPlease enter the Billing Cycle: ");
      scanf("%d",&bill_Cycle);
      printf("\nPlease enter the No. of Days: ");
      scanf("%d",&no_Days);
      printf("\nPlease enter the Billing Exchange Rate: ");
      scanf("%f",&bi_Exch_Rate);
      printf("\nPlease enter the Base Exchange Rate: ");
      scanf("%f",&ba_Exch_Rate);
      printf("\nPlease enter the Current Reading: ");
      scanf("%f",&cur_Read);
      printf("\nPlease enter the Previous Reading: ");
      scanf("%f",&prev_Read);
      printf("What is the Reading Type: ");
      scanf("%c",&rea_type);
       cur_Usage = cur_Read-prev_Read;
         if (cur_Usage<100)
         {
           cur_Peri_Charg = cur_Usage*rate_One;
         }
         else
         {
          cur_Peri_Charg = (((cur_Usage-100) * rate_One)+(cur_Usage*rate_Two));
         }
       strcat(premis_numb,c_Digit);/**Joins the Premis Number and the Customer digits together**/
 /**Information to be displayed showing user all input and calculations.**/
  system("cls");
 printf("\tStored constants for calculation of customer bill\n");
 printf("      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n");
 printf("       Customer Number:%s",premis_numb);
 printf("          Current Usage:%.2f \n",cur_Usage);
 printf("\n");
 printf("       Billing Cycle:%d\t\t       No of Days:%d\n",bill_Cycle,no_Days);
 printf("\n");
 printf("       Billing Exchange Rate:%.2f     Base Exchange Rate:%.2f\n",bi_Exch_Rate,ba_Exch_Rate);
 printf("\n");
 printf("       Deposit:%.2f\t\t       Multiplier:%d\n",deposit,multiplier);
 printf("\n");
 printf("       Rate 1:%.3f\t\t       Rate 2:%.3f\n",rate_One,rate_Two);
 printf("\n");
 printf("       Current Reading:%.2f\t       Previous Reading:%.2f\n",cur_Read,prev_Read);
 printf("\n");
 printf("       Current Usage Reading:%.2f    Reading Type:%c\n",cur_Peri_Charg,rea_type);
 printf("      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n");
4

3 に答える 3

0

char[] の参照を渡す必要はありません。premin_num & c_Digit は、char[] の開始アドレスです。このようにしてください

 scanf("%s",premis_numb);
 scanf("%s",c_Digit);

コンパイラがrea_typescanf で入力をスキップしている考えられる理由の 1 つは、ユーザーが入力した改行があったためです。so if there's a stray newline in the input stream (from a previous entry, for example) the scanf call will consume it immediately & skip taking input.

解決:

前にスペースを確保する %c

scanf(" %s",&rea_type);
于 2013-10-09T08:26:16.883 に答える
0

文字の読み取りをスキップせず、最後の の後に入力バッファーに残っている改行scanfを読み取ります。

scanfこれは、先頭の空白をスキップするように指示することで簡単に修正できます。

scanf(" %c", &rea_type);

書式設定コードの前のスペースに注意してください。

于 2013-10-09T08:27:54.373 に答える