Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Mein erstes Programm
Mein erstes Programm wurde in C++ Programmiert. Der Code ist:
#include <iostream>
using namespace std;
int main() {
char a = 'A';
int eingabe;
scanf("%d", &eingabe);
a = a + eingabe;
printf("%c");
return 0;
}
- Es ist Richtig!!!