小白求助~
#include <stdio.h>
int main()?
{ ? ? ???int height = 185;
? ? ? ? if(height>=180)
? ? {printf("恭喜小明可以參加?;@球隊\n");?}
return 0;}
求問printf輸出項兩種方式的區別。。。。。
#include <stdio.h>
int main()?
{ ? ? ??
? ? int height = 185;
? ??
? ? if(height>=180)
? ? {
? ? ? ? printf("%s\n","恭喜小明可以參加校籃球隊");
? ? }return 0;
}
2015-11-28
對沒錯
2015-11-10
第一種是假如身高185大于等于180,則輸出恭喜小明可以參加籃球隊。
第二種是。。。。。。。。。。。。,則輸出字符串恭喜小明可以參加籃球隊。
僅此而已