#include <stdio.h>
int main()
{
int w,x,y,z;
float v;
printf("Enter the driver salary\n");
scanf("%d",&x);
printf("Enter the car mileage in km per litre\n");
scanf("%d",&y);
printf("Enter the cost of petrol per litre\n");
scanf("%d",&z);
printf("Enter the taxi fare for a km\n");
scanf("%d",&w);
printf("Enter the distance of travel\n");
scanf("%f",&v);
if(w==200 && y==10 && z==60 && x== 20 && v==10.5)
printf("Minimal cost travel is by taxi\n");
else
printf("Minimal cost travel is by audi\n");
return 0;
}
對於兩種不同的w
組輸入值,y
,z
,x
,v
,我需要打印在同一時間兩個輸出語句。我獲得第一個輸出,但是如何同時獲得兩個輸出?
刪除'else',並把它一起下'if'?沒有真正理解這個問題 – Ediac
你能更具體一些「兩組不同的輸入值」有點模糊,沒有幫助。通常有幫助的是爲給定的輸入提供期望的輸出,然後爲該輸入提供實際的輸出。 – Daniel
請嘗試多解釋一下你的問題。 –