lehrkraefte:blc:informatik:ffprg2017:ln:ln

Installation einer IDE

  • Unter Linux: gcc + Text-Editor
  • Windows: gcc + MINGW + Texteditor oder VisualC++?
  • Mac? Keine Ahnung… wohl gcc + Text-Editor oder X-Code?

Hello World

hello.cpp
// Kommentar
#include <iostream>  // Für Ein- und Ausgabe
 
/* Mehrzeiliger Kommentar
 Damit einfach cout anstatt std::cout geschrieben werden kann.
 Gilt auch für endl anstatt std:endl
*/
using namespace std;
 
// Start Hauptprogramm. Könnte int zurückgeben als Fehlercode
// 0 heisst kein Fehler.
int main() {
  cout << "Hello world!" << endl;
}

Subtask 1

sub1.cpp
#include <iostream> 
using namespace std;
 
// Solve problem
int solve(int n, int s, int p[]) {
  // Solve problem here
  // Return solution
  return 42;
}
 
 
int main() {
  int t=0;  // number of test cases
  cin >> t;
  // Repeat over all test cases
  for (int i=0; i<t; i++) {
    int n=0;
    cin >> n; // number of sushis
    int s=0;
    cin >> s; // price of bottle
 
    int p[n]; // Array for sushi prices
    for (int j=0; j<n; j++) {
      cin >> p[j];  // Read sushi price
    }
    // Solve and output solution
    cout << "Case #" << i << ": " << solve(n,s,p) << endl;
  }
}
Testdaten
sub1.txt
2
2 0
16 42
2 0
100 64
Ausführen

Nach dem Compilieren z.B. mit

  ./sub1.exe < sub1.txt

wird der Inhalt der Datei sub1.txt eingelesen, als ob dies auf der Tastatur eingegeben worden wäre.

Makefile

Für jene ohne IDE, hier ein generisches Makefile:

Makefile
SOURCES=$(wildcard *.cpp)
TARGETS=$(patsubst %.cpp,%.exe,$(SOURCES))
 
all:	$(TARGETS)
 
%.exe:	%.cpp
	g++ $< -o $@
 
clean:
	rm -r *~ *.exe
  • lehrkraefte/blc/informatik/ffprg2017/ln/ln.txt
  • Last modified: 2017/11/10 08:39
  • by Ivo Blöchliger