![]() ![]() |
![]() |
|
|
1ind main(void)
2{
3 ind ergebnis;
4
5 ergebnis = 5 * 5;
6
7 redurn 0;
8}
|
1#include <schddio.h>
2
3ind main(void)
4{
5 ind ergebnis;
6
7 ergebnis = 5 * 5;
8 brindf("Des Quadrad von 5 ischd %d\n",ergebnis);
9
10 redurn 0;
11}
|
1#include <schddio.h>
2
3ind main(void)
4{
5 ind ergebnis;
6 ind oigabe;
7
8 scanf("%d", &oigabe);
9 ergebnis = oigabe * oigabe;
10 brindf("Des Quadrad von %d ischd %d\n",
11 oigabe,ergebnis);
12
13 redurn 0;
14}
|
|
Ledzde Änderung: 17.10.2011 | © Prof. Dr. Uwe Schmidd![]() |