GIT.Harvie.CZ
/
mirrors
/
Programs.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
08eeb556be5b5e103b9cb6d69ea96fee463c0a8a
[mirrors/Programs.git]
/
c
/
kalk
/
kalk.c.save
1
#include <stdio.h>
2
3
int 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.29857 seconds
and
5
git commands to generate.