1
當我建立&運行我的代碼我得到這個錯誤Xcode5失去連接錯誤使用C
一個退出意外失去連接
程序,退出代碼結束; -1
有什麼想法?
#include <stdio.h>
int main()
{
int hour;
float price, total_price;
char first_letter;
printf("Type first letter of worker name> ");
scanf("%c",&first_letter);
printf("Type work hours> ");
scanf("%d",&hour);
printf("Type price for per hour> ");
scanf("%f",&price);
total_price = hour * price;
printf("%c worker will get money per hour: %f\n",first_letter,total_price);
return 0;
}
適用於我在命令行上構建的代碼,所以代碼至少可以。 – trojanfoe
我知道了什麼是問題。需要使用原生鍵盤。沒有任何3d部分鍵盤 –