Undefined
By: sdfsdfs | Date: Jan 8 2009 16:55 | Format: C++ | Expires: never | Size: 756 B | Hits: 957
- // d3v.cpp : Definiert den Einstiegspunkt für die Konsolenanwendung.
- //
- #include "stdafx.h"
- #include <iostream>
- #include <string>
- using namespace std;
- bool ishot(int grad = 20);
- bool ishot(int grad, bool summert1me);
- int main()
- {
- int grad;
- cout<<"wieviel grad?"<<endl;
- cin>>grad;
- if(ishot(grad)){
- cout<<"es ist heiss"<<endl;
- }else{
- cout<<"es ist nicht heiss"<<endl;
- }
- if(ishot(grad,false)){
- cout<<"es ist heiss und sommer";
- }
- else{
- cout<<"nur bei uns heiss im haus";
- }
- return 0;
- }
- bool ishot(int grad, bool summert1me)
- {
- if(grad>30){
- if(summert1me){
- return true;
- }else{
- return false;
- }
- }else{
- return false;
- }
- }
- bool ishot(int grad){
- if(grad>30){
- return true;
- }else{
- return false;
- }
- }
Latest pastes
5 days ago
6 days ago
7 days ago
8 days ago
9 days ago