forked from tdamdouni/Pythonista
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjob.java
More file actions
40 lines (35 loc) · 944 Bytes
/
job.java
File metadata and controls
40 lines (35 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# https://jobs.vector.com/hr_index_de.html
#include <iostream>
#include <jobs_vector.h>
int main()
{
int myJob = -1;
std::cout<< "Ist es noch Arbeit, ";
std::cout<< "wenn es Spaß macht?";
myJob = jobCode(1,0);
return myJob;
}
---
using System;
public static class Jobs
{
public static void Main(string[] args)
{
Console.WriteLine("Mache einen der besten Arbeitgeber ");
Console.WriteLine("noch eine Idee besser.");
VectorJobs.ShowJobDetails("myJob");
}
}
---
using System;
public static class Jobs
{
public static void Main(string[] args)
{
Console.WriteLine("Arbeite nicht für einen Automobilkonzern. ");
Console.WriteLine("Arbeite für alle.");
VectorJobs.ShowJobDetails("myJob");
}
}