This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace bsp11 | |
{ | |
class MainClass | |
{ | |
public static void Main (string[] args) | |
{ | |
/* 1.(2P) Schreibe ein Programm, das die Fü̈llmenge eines liegenden Kreiszylinders berechnet (Formel siehe Wikipedia, Tank-Problem). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 1310601027, fhs36118 | |
* Daniel Raudschus | |
* ueo3 bsp14 | |
*/ | |
using System; | |
namespace bsp14 | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 1310601027, fhs36118 | |
* Daniel Raudschus | |
* ueo3 bsp15 | |
*/ | |
using System; | |
namespace bsp15 | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace bsp17 | |
{ | |
class MainClass | |
{ | |
/* 17. (2P) Schreibe eine Methode printPrimeFactors, die zu einer eingegebenen Zahl die Zerlegung in Primfaktoren ausgibt. | |
Beispiel: 60 hat die Primfaktorzerlegung 2*2*3*5. | |
Tipp: Zur Lösung der Aufgabe soll das Programm die ganzen Zahlen t ≥ 2 in aufsteigender Reihenfolge betrachten. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace bsp17 | |
{ | |
class MainClass | |
{ | |
/* 17. (2P) Schreibe eine Methode printPrimeFactors, die zu einer eingegebenen Zahl die Zerlegung in Primfaktoren ausgibt. | |
Beispiel: 60 hat die Primfaktorzerlegung 2*2*3*5. | |
Tipp: Zur Lösung der Aufgabe soll das Programm die ganzen Zahlen t ≥ 2 in aufsteigender Reihenfolge betrachten. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 1310601027, fhs36118 | |
* Daniel Raudschus | |
* ueo3 bsp20 | |
* */ | |
using System; | |
namespace bsp20 | |
{ | |
class MainClass | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 1310601027, fhs36118 | |
* Daniel Raudschus | |
* ueo3 bsp19 | |
* */ | |
using System; | |
namespace bsp19 | |
{ | |
class MainClass |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 1310601027, fhs36118 | |
* Daniel Raudschus | |
* ueo4 bsp24 | |
* */ | |
using System; | |
namespace bsp24 | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace bsp26 | |
{ | |
class MainClass | |
{ | |
const double PI = 3.14; // TODO: 3.141592 = 355/113 | |
static double output ; | |
static double n; | |
static double m; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 1310601027, fhs36118 | |
* Daniel Raudschus | |
* ueo4 bsp25 | |
* */ | |
using System; | |
namespace bsp25 | |
{ | |
/* 25.(4P) Schreibe ein Programm mit einer Methode, die eine Sanduhr 5n-mal nebeneinander ausgibt; |
OlderNewer