---Zapotek-- Φεβρουάριος 12, 2006 #41 Κοινοποίηση Φεβρουάριος 12, 2006 Δε βλεπεις... Και σε λιγο θα προστεθει και κωδικας σε MATLab. Link to comment Share on other sites More sharing options...
Dr.Paneas Φεβρουάριος 12, 2006 Author #42 Κοινοποίηση Φεβρουάριος 12, 2006 VB το εχω ετοιμο σε GUI με κωδικα στα buttons κλπ αλλα δεν λεει...Κανενας σε c++ ; Για να υπαρξει συγκριση c/c++Zap να φωναξω τον Σωτο ; (οχι τον moderator, ενα φιλαρακι μου) Link to comment Share on other sites More sharing options...
---Zapotek-- Φεβρουάριος 12, 2006 #43 Κοινοποίηση Φεβρουάριος 12, 2006 Ο Σωτος εφυγε, πριν λιγο μιλουσαμε...Μαθενω python τωρα για να ποσταρω...Σε κανα 10 λεπτο θα το εχω ετοιμο... Link to comment Share on other sites More sharing options...
---Zapotek-- Φεβρουάριος 12, 2006 #44 Κοινοποίηση Φεβρουάριος 12, 2006 Python#!/usr/bin/env pythonimport sysCURRENCY=340.75action = (raw_input("Enter e2d (euros to drahmas) or d2e :"))value = (input("Enter the value to convert:"))if action == 'e2d': conv = value * CURRENCY print value,' euro -> ',conv,' drahmas'elif action == 'd2e': conv = value / CURRENCY print value,' drahmas -> ',conv,' euro' Link to comment Share on other sites More sharing options...
Dr.Paneas Φεβρουάριος 12, 2006 Author #45 Κοινοποίηση Φεβρουάριος 12, 2006 Για να τρεξω ενα python προγραμμα με τι extension κανω save το αρχειο ;Μπραβο σου zapotek! Link to comment Share on other sites More sharing options...
---Zapotek-- Φεβρουάριος 12, 2006 #46 Κοινοποίηση Φεβρουάριος 12, 2006 Το κανεις ως <name>.py και μετα απο shell: chmod +x <name>.py για να γινει executable... Link to comment Share on other sites More sharing options...
---Zapotek-- Φεβρουάριος 12, 2006 #47 Κοινοποίηση Φεβρουάριος 12, 2006 MATLabchoice = 0; possibility = 3; while choice ~=possibility choice = menu('DRX-->EURO-->DRX Converter','1. Euro --> Drx',... '2.Drx-->Euro','Close Program'); if choice == 1 answer = input('Enter the amount of Euro:'); c = 341; D = answer*c; fprintf('The Drx are %d',D); clear D; clear c; end if choice ==2 answer = input('Enter the amoun of Drx:'); c = 341; D = answer/c; fprintf('The Euros are: %d',D); clear D; clear c; end if choice ==3 close all end endΕυγενική χορηγία του φίλτατου N3trino. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.