07-01-2022, 11:57 PM
(This post was last modified: 07-02-2022, 12:03 AM by Kernelpanic.)
@bobkreid - I don't understand what you want to show or prove. Do you want to show how long it takes to add two numbers in C or in Basic with a function?
So, in the two examples, probably about 0.0001 second, or something.
The Time Machine is really a very well film (1960!).
So, in the two examples, probably about 0.0001 second, or something.
Code: (Select All)
//Addiert zwei Zahlen - 1. Juni 2022
#include <stdlib.h>
#include <stdio.h>
//Funktionsdeklaration
int addiere_zwei_zahlen(int zahl1, int zahl2);
int main(void)
{
int zahl1, zahl2;
printf("\nGeben Sie 2 Zahlen ein (Zahl1 <Leertaste> Zahl2\n");
scanf("%d %d", &zahl1, &zahl2);
printf("\nDie Summe ist: %d\n", addiere_zwei_zahlen(zahl1, zahl2));
return(0);
}
int addiere_zwei_zahlen(int zahl1, int zahl2)
{
return(zahl1 + zahl2);
}
Code: (Select All)
'Addition zweier Zahlen, 1. Juni 2022
Option _Explicit
Declare Function addiere(Zahl1 as Integer, Zahl2 as Integer) as Integer
Dim Zahl1 As Integer, Zahl2 As Integer
Print "Geben Sie 2 Zahlen ein: "
Input "Zahl1: ", Zahl1
Input "Zahl2: ", Zahl2
Print
Print Using "Die Summe der beiden Zahlen ist: ####"; addiere(Zahl1, Zahl2)
End
Function addiere (Zahl1 As Integer, Zahl2 As Integer)
addiere = Zahl1 + Zahl2
End Function
The Time Machine is really a very well film (1960!).