- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我需要使用 getchar()、putchar() 进行 I/O。我的程序工作得很好,但我不能像在嵌入式系统的 CodeWarrior 中那样使用它。我还需要摆脱 malloc() 并只使用堆栈进行弹出/推送。如果我不再使用 scanf,我还能使用 strtol
吗?
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX 10
float *p, *tos, *bos;
int *p2, *tos2, *bos2;
int imode = 1;
void push(float f); float pop(void);
void push2(int i); int pop2(void);
int main (void) {
float a, b;
int c, d;
char s[64];
// p = malloc ( MAX * sizeof *p );
p = (float *) malloc(MAX*sizeof(float)); /* get stack memory */
p2 = (int *) malloc(MAX*sizeof(int)); /* get stack memory */
if (!p || !p2) {
printf("Allocation Failure\n");
exit(1);
}
tos = p; bos = p + MAX-1;
tos2 = p2; bos2 = p2 + MAX-1;
printf("\nRPN Calculator\n");
printf("Enter 'i' for Integer mode (default)\n");
printf("Enter 'f' for Floating point mode\n");
printf("Enter 'm' to Show Menu\n");
printf("Enter 'q' to Quit\n\n");
char *endptr;
do {
printf("> ");
scanf("%s", s);
if (imode == 0) { /* Floating Mode */
float val = strtof(s, &endptr); /* string to float conversion */
if (*endptr == '\0') {
//printf("Got only the floateger: %d\n", val);
}
else {
//printf("operator: %s\n", endptr);
//printf("float: %f\n", val);
if (val != 0){ /* don't push val on stack if 0 */
push(val);
}
}
switch(*endptr) {
case 'i':
printf("\n (Integer Mode)\n");
imode = 1; /* mode flag */
break;
case 'f':
printf("\n (Floating Point Mode)\n");
imode = 0; /* mode flag */
break;
case 'm':
printf("\nRPN Calculator\n");
printf("Enter 'i' for Integer mode\n");
printf("Enter 'f' for Floating point mode\n");
printf("Enter 'm' to Show Menu\n");
printf("Enter 'q' to Quit\n\n");
break;
case '+':
a = pop(); b = pop();
printf("= %f\n",a+b);
push(a+b);
break;
case '-':
a = pop(); b = pop();
printf("= %f\n", b-a);
push(b-a);
break;
case '*':
a = pop(); b = pop();
printf("= %f\n", a*b);
push(a*b);
break;
case '/':
a = pop(); b = pop();
if(a == 0){
printf("Cannot divide by zero\n");
break;
}
printf("= %f\n", b/a);
push(b/a);
break;
case '.':
a = pop(); push(a);
printf("Top of stack value: %f\n", a);
break;
default:
push(val);
}
}
else { /* Integer Mode */
int val2 = strtod(s, &endptr); /* string to float conversion */
if (*endptr == '\0') {
//printf("Got only the floateger: %d\n", val);
}
else {
//printf("operator: %s\n", endptr);
// printf("int: %d\n", val2);
if (val2 != 0){ /* don't push val on stack if 0 */
push2(val2);
}
}
switch(*endptr) {
case 'i':
printf("\n (Integer Mode)\n");
imode = 1; /* mode flag */
break;
case 'f':
printf("\n (Floating Point Mode)\n");
imode = 0; /* mode flag */
break;
case 'm':
printf("\nRPN Calculator\n");
printf("Enter 'i' for Integer mode\n");
printf("Enter 'f' for Floating point mode\n");
printf("Enter 'm' to Show Menu\n");
printf("Enter 'q' to Quit\n\n");
break;
case '+':
c = pop2(); d = pop2();
// printf("%d\n", c);
// printf("%d\n", d);
printf("= %d\n",c+d);
push2(c+d);
break;
case '-':
c = pop2(); d = pop2();
printf("= %d\n", d-c);
push2(d-c);
break;
case '*':
c = pop2(); d = pop2();
printf("= %d\n", c*d);
push2(c*d);
break;
case '/':
c = pop2(); d = pop2();
if(c == 0){
printf("Cannot divide by zero\n");
break;
}
printf("= %d\n", d/c);
push2(d/c);
break;
case '.':
c = pop2(); push2(c);
printf("Top of stack value: %d\n", c);
break;
default:
// push(atoi(s));
push2(val2);
}
}
} while (*s != 'q'); /* Do until 'q' is entered */
return 0;
}
void push (float f) { /* Put an element on the stack */
*p = f;
p++;
}
float pop (void) { /* Get the element from the top of the stack */
p--;
return *p;
}
void push2 (int i) {
*p2 = i;
p2++;
}
int pop2(void) {
p2--;
return *p2;
}
这是我目前对 int 模式的看法:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX 50
int *p;
int *tos;
int *bos;
void push(int i);
int pop(void);
int main (void)
{
int a, b;
char s[5];
int c;
int count;
tos = p;
bos = p + MAX-1;
printf("\nRPN Calculator\n");
printf("Enter 'i' for integer mode\n");
printf("Enter 'f' for floating point mode\n");
printf("Enter 'q' to quit\n\n");
char *endptr;
do {
printf("> ");
//scanf("%s", s);
count = 0;
while ((count < 5) && (c != EOF) && (c !='\n')) { /* don't go over the array size! */
s[count] = c;
++count;
c = getchar(); /* get another character */
}
//for (c=0; c<count; c++) {
//putchar(c);
//}
int val = strtol(s, &endptr, 10);
if (*endptr == '\0') {
//printf("Got only the integer: %d\n", val);
}
else {
//printf("operator: %s\n", endptr);
//printf("integer: %d\n", val);
if (val != 0){ /* don't push val on stack if 0 */
push(val);
}
}
switch(*endptr) {
case 'i':
printf("(Integer Mode)\n");
break;
case 'f':
printf("(Floating Point Mode)\n");
break;
case '+':
a = pop();
b = pop();
// printf("%d\n",a);
// printf("%d\n",b);
// printf("%d\n",val);
printf("%d\n", a+b);
push(a+b);
break;
case '-':
a = pop();
b = pop();
// printf("%d\n", b-a);
push(b-a);
break;
case '*':
a = pop();
b = pop();
// printf("%d\n", a*b);
push(a*b);
break;
case '/':
a = pop();
b = pop();
if(a == 0){
// printf("Cannot divide by zero\n");
break;
}
// printf("%d\n", b/a);
push(b/a);
break;
case '.':
a = pop(); push(a);
// printf("Current value on top of stack: %d\n", a);
break;
default:
push(val);
}
} while (c != 'q'); /* Do until 'q' is entered */
return 0;
}
void push (int i) /* Put an element on the stack */
{
if (p > bos){
printf("Stack Full\n");
return;
}
*p = i;
p++;
}
int pop (void) /* Get the element from the top of the stack */
{
p--;
if(p < 0) {
printf("Stack Underflow\n");
return 0;
}
return *p;
}
最佳答案
是否可以使用 strtol() 取决于您的嵌入式系统。
C 标准识别两种环境。一种是正常的“托管”环境,它为 C 库提供全面支持。另一个是“独立式”环境。那只需要为 C 中的 7 个 header 提供支持:
<float.h>
<iso646.h>
<limits.h>
<stdarg.h>
<stdbool.h>
<stddef.h>
<stdint.h>
由于您处于嵌入式环境中,因此您可以依赖这 7 个。对于其他所有内容,您需要阅读您的环境手册。
很有可能您可以使用 strtol()。
关于c - 如何将我的代码转换为使用 getchar() putchar() 而不是使用 scanf() 和 printf() 进行 I/O?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2245826/
我想知道以下语句在 C 中会打印什么? printf("hello\n") || (printf("goodbye\n") || printf("world\n")); 我通常习惯于使用“cout”在
这是我目前正在学习的系统编程类(class)的幻灯片: catch_child 是 SIGCHLD 处理程序。输出与代码如何对应?为什么没有打印一些“Child #x started”消息? 最佳答案
这有点像拼图……我刚刚又回到了C,打算这次掌握它。所以我一直在阅读 The C Programming Language ,我得到了这个声明: Among others, printf also re
如何使用 printf 在字符串末尾附加空格? 我找不到任何在右侧附加空格的示例。 A similar question我发现使用 printf改为在字符串的左侧添加空格。 最佳答案 使用负数左对齐(
我想通过 usart 从 stm32f405 注销。 在我的 syscall.c 文件中,我实现了通过 usart 打印的功能: int _write(int file, char *ptr, int
我想定义一个记录器函数,比如 myPutStrLn = putStrLn . (++) "log: " main = do myPutStrLn "hello" 这很好。现在我想用 printf 格式
Printf module API详细介绍了类型转换标志,其中: %B: convert a boolean argument to the string true or false %b: conv
@H2CO3 这是我的主要代码: #pragma OPENCL EXTENSION cl_ amd_ printf : enable #define PROGRAM_FILE "matvec.cl"
Printf module API详细介绍了类型转换标志,其中: %B: convert a boolean argument to the string true or false %b: conv
您可以使用 printf 字段宽度说明符截断字符串: printf("%.5s", "abcdefgh"); > abcde 不幸的是,它不适用于数字(将 d 替换为 x 是相同的): printf(
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 4 年前。 Improve th
我遇到了我见过的最奇怪的错误之一。 我有一个简单的程序,可以打印多个整数数组。 对数组进行排序,然后打印...... place_in_buf(n100, 100); insertion(10
我的程序是每隔一段时间获取文件大小并显示它以记录任何更改。由于某种原因,执行下面的代码挂起,只为我提供了一个光标。没有打印或显示任何内容。 代码: #include #include #inclu
printf("It is currently %s's turn.\n", current->name); 我想知道为什么在 %s 之后打印出额外的换行符。我知道C 中的字符串总是以\0 结尾。没有
这个问题已经有答案了: printf anomaly after "fork()" (3 个回答) fork() in c using printf [duplicate] (2 个回答) 已关闭 9
我对编程很陌生。 我正在尝试编写一个程序,从数组中调用水果的价格。但我希望代码在写价格之前也写水果的名称。如果我键入 2,如何使输出为“Orange price : 10”而不仅仅是 price :
这个问题在这里已经有了答案: How do I print a non-null-terminated string using printf? (2 个答案) 关闭 7 年前。 例如,我有一个字符
我有一个 atmel UC3-L0 和罗盘传感器。现在我安装 AtmelStudio 并将一些演示代码下载到电路板中。但是我不知道演示代码中的函数 printf 会在哪里出现数据。我应该如何获取数据?
我有一个 atmel UC3-L0 和罗盘传感器。现在我安装 AtmelStudio 并将一些演示代码下载到电路板中。但是我不知道演示代码中的函数 printf 会在哪里出现数据。我应该如何获取数据?
嗨,我是 C 世界的新手,我的代码确实有些奇怪。目标是创建一个函数,可以在开头和结尾处用空格和/或制表符修剪字符串。我无法使用字符串库。 问题是我的代码中有一个 printf 只是用于测试,它的工作非
我是一名优秀的程序员,十分优秀!