voltage note
[mirrors/Programs.git] / c / kalk / kalk.c.save
CommitLineData
21c4e167
H
1#include <stdio.h>
2
3int main() {
4 puts("KALK\n");
5
6 float a, b;
7 char op;
8
9 char loop = 1;
10 while(loop) {
11 scanf("%f", &a);
12 scanf("%c%c", &op);
13 scanf("%f", &b);
14 printf("%f %c %f = ?\n", a, op, b);
15 }
16}
This page took 0.156084 seconds and 4 git commands to generate.