最赞回答 / tlcjbl
#include <stdio.h>int main(){ float number=200; int year=2014; do{ year++; number = number*1.2; }while(number<1000); printf("到%d年招工规模突破1000人\n", year); return 0;}类型转换的问题
2015-07-15
最新回答 / 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