這是我的使用功能進行簡單的利息代碼: -c中函數的類型不匹配重新聲明是什麼?
#include<stdio.h>
#include<conio.h>
void main()
{
int a,c;
float b,d;
printf("Enter principle value :");
scanf("%d", &a);
printf("Enter rate :");
scanf("%f", &b);
printf("Enter time:");
scanf("%d", &c);
d=si(a,c,b);
printf("The simple interest is %f", d);
getch();
}
float si(int a, int c, float b)
{
float f;
f=(p*t*r/100);
return(0);
}
所以這是給「SI的類型不匹配的重聲明」從浮SI錯誤。
你看過關於類型不匹配重新聲明錯誤的任何其他問題嗎? –
put'float si(int a,int c,float b);'int'main(void)'之前'。還有'scanf(「%d」,&t);'typo as'scanf(「%d」,&c);?' – BLUEPIXY
其中是't'變量? –