下面的代碼引發了編譯錯誤。我是編程新手,所以不知道還有什麼要做。我在課堂上教過,但不能正確理解。凸輪任何人請幫我解決它?cs50 pset1 water.c編譯時出現錯誤
#include<stdio.h>
#include<cs50.h>
int main(void)
{
int y;
do
{
printf("Minutes: ");
int Minutes = get_int();
}
while(Minutes< 0);
y= Minutes * 12;
printf("Bottles: %i\n", y);
}
它拋出以下錯誤:
water.c:10:8: error: unused variable 'Minutes' [-Werror,-Wunused-variable]
int Minutes = get_int();
^
water.c:12:7: error: use of undeclared identifier 'Minutes'
while(Minutes< 0);
^
water.c:14:4: error: use of undeclared identifier 'Minutes'
y= Minutes * 12;
^
3 errors generated.
make: *** [water] Error 1
'INT分鐘;'移動到前do-while循環。 – BLUEPIXY
[找到一個很好的初學者書](http://stackoverflow.com/questions/562303/the-definitive-c-book-guide-and-list)並閱讀*範圍*。 –
這個錯誤幾乎說明了一切。 –