Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
CPP - ex 5 - solution
Language:
Ada
Assembly
Bash
C#
C++ (gcc)
C++ (clang)
C++ (vc++)
C (gcc)
C (clang)
C (vc)
Client Side
Clojure
Common Lisp
D
Elixir
Erlang
F#
Fortran
Go
Haskell
Java
Javascript
Kotlin
Lua
MySql
Node.js
Ocaml
Octave
Objective-C
Oracle
Pascal
Perl
Php
PostgreSQL
Prolog
Python
Python 3
R
Rust
Ruby
Scala
Scheme
Sql Server
Swift
Tcl
Visual Basic
Layout:
Vertical
Horizontal
//Il comune di castronno decide di installare un sistema automatizzato per la distribuzione dell'acqua //tale sistema prevede l'utilizzo di 2 distributori, 1 per l'acqua naturale ed uno per quella frizzante //ogni distributore accetta il pagamento attraverso la smartcard o in moneta, il costo di una erogazione da 1L e' di 0,05€ //ogni cittadino puo' acquistare una smartcard al costo di 10€ con 10€ precaricaricati //crea una struttura dati che rappresenta il sistema sopracitato #include <iostream> #include <string.h> using namespace std; struct smartcard { string nomeProprietario; string cognomeProprietario; int residuoCarta = 10; }; struct pagamento { smartcard erogazione; int contanti; }; struct distributore { string acquaNaturale; string acquaFrizzante; pagamento smartcard; pagamento contanti; }; struct acquistoCittadino { pagamento smartcard; int erogazione = 0.05; }; int main() { std::cout << "Hello, world!\n"; }
g++
Show compiler warnings
[
+
] Compiler args
[
+
]
Show input
Compilation time: 0.33 sec, absolute running time: 0.14 sec, cpu time: 0 sec, memory peak: 3 Mb, absolute service time: 0.48 sec
edit mode
|
history
|
discussion
Hello, world!