看板 C_and_CPP 關於我們 聯絡資訊
各位板大~ 小弟有一題問題想問您們 題目是: 由鍵盤輸入一數字並逆印在螢幕上 問題來了 由鍵盤輸入數字我會 #include<stdio.h> #include<stdlib.h> int main() { int n; printf("請輸入數字"); scanf("%d",&n); ....... 逆印也會 #include<stdio.h> #include<string.h> #include<stdlib.h> int main() { char str[]= " i love ptt "; int i; for(i=strlen(str);i>=0;i--) printf("%c",str[i]); printf("\n"); system("pause"); return 0; } 那怎麼讓這兩個程式合起來呢?? 拜託各位大大了 > < -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 120.107.174.109
LPH66:提示: 其實只需要第二個就行了... 12/16 21:40
johnhmj:因為鍵盤上的數字也可以當成字串來作輸入。 12/16 21:49
johnhmj:個位的數字是字元,但是十位百位以上的數字可以成字串。 12/16 21:50
VictorTom:的確第二段就夠了, 只是, 這題會不會本來也有考flow 12/16 22:14
VictorTom:control與% operator練習的成份在裡面啊XD 12/16 22:14
ledia:我想... 不需要幫考題尋找他想考的觀念 XD 12/16 22:56
VictorTom:這倒是 XD 12/16 23:33