c
1#include <stdio.h> 2#include <stdbool.h> 3 4#define MAX (100) 5 6void push(char c,char *s,int *top); 7void print_stack_ary(char* s, int top); 8char pop(char* s, int* top); 9 10int main(){ 11 12 char s[MAX] = {}; 13 int top = 0; 14 char input,stock4pop; 15 bool escape = false; 16 17 while (!escape) { 18 19 printf("スタックを操作します。文字を入力してください:"); 20 scanf("%c",&input); 21 22 switch (input) { 23 case '0': 24 escape = true; 25 break; 26 27 case '1': 28 stock4pop = pop(s, &top); 29 printf("popした文字は%cです。\n",stock4pop); 30 print_stack_ary(s, top); 31 break; 32 33 default: 34 push(input,s, &top); 35 print_stack_ary(s, top); 36 break; 37 } 38 39 input = 0; 40 41 } 42 43 44 return 0; 45} 46 47void push(char c,char *s,int *top){ 48 49 if (c == '\n') { 50 return; 51 } 52 s[*top] = c; 53 (*top)++; 54 55} 56 57void print_stack_ary(char* s, int top){ 58 59 for (int i=top-1; i>=0; i--) { 60 printf("%c\n",s[i]); 61 } 62 63 64} 65 66char pop(char* s, int* top){ 67 68 char re = s[*top-1]; 69 s[*top-1] = '\0'; 70 (*top)--; 71 72 return re; 73} 74
上のコードを実行した際、下記の実行結果になります(scanfをgetcharにしても同様)。なぜでしょうか?aは入力です。
スタックを操作します。文字を入力してください:a a スタックを操作します。文字を入力してください:a スタックを操作します。文字を入力してください:
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。