最新回答 / Songlw
由于無(wú)法查看您的代碼,不方便結(jié)合實(shí)例說(shuō)明,不妨鞏固下for的嵌套循環(huán)知識(shí)點(diǎn)。
2015-07-15
最贊回答 / 寒江北去
<...code...>
最贊回答 / tlcjbl
#include <stdio.h>int main(){??? float number=200;?????????? int year=2014;??? do{????? year++;???? ????? number = number*1.2;???????????????????? }while(number<1000);???????? printf("到%d年招工規(guī)模突破1000人\n", year);??? return 0;}類(lèi)型轉(zhuǎn)換的問(wèn)題
最新回答 / tlcjbl
#include <stdio.h>int main(){??? int age = 18;?float height = 1.85;?char unit = 'm';?printf("%d", age);?printf("%f", height);?printf("%c",unit); ?return 0;}<...code...>?
2015-07-15