Jump to content

Recommended Posts

Posted

εάν δεν το κάνεις μόνος σου δεν έχει αξία , και επίσης δεν βλέπω κάτι το δύσκολο στον κώδικα εκτός από το 1) που δεν έχω ιδέα για το πως γίνεται ... ( επίσης δεν έχω ιδέα από c# αλλά από την ΓΛΩΣΣΑ που κάνουμε σχολείο μπορώ να κάνω ένα πρόγραμμα με τα 2-3 )

Posted

εάν δεν το κάνεις μόνος σου δεν έχει αξία , και επίσης δεν βλέπω κάτι το δύσκολο στον κώδικα εκτός από το 1) που δεν έχω ιδέα για το πως γίνεται ... ( επίσης δεν έχω ιδέα από c# αλλά από την ΓΛΩΣΣΑ που κάνουμε σχολείο μπορώ να κάνω ένα πρόγραμμα με τα 2-3 )

thelei code se Visual C#
Posted

 

Ekana To 1o Erwtima:

using System;

class Lab1Ex1

{

    public static void Main()

    {

 

 

        Console.WriteLine("Username:");

        string username = Console.ReadLine();

        Console.WriteLine("Password:");

        string password = Console.ReadLine();

       

 

        if (username == "admin" && password == "admin")

        {

            Console.WriteLine("You are now logged !!!");

        }

             

        else

        {

            Console.WriteLine("Invalid Username Or Password !!!");

        }

            Console.ReadKey(); 

        }

    }

 

===========================================

Dn mporw na valw orio gia 3 prospathies.....pws ginete auto ??? 

     

Posted

Dn mporw na valw orio gia 3 prospathies.....pws ginete auto ??? 

     

ευκολα γινεται με ενα for ή while loop.

καντο με while καλυτερα , δημιουργησε μια μεταβλητη int που θα ειναι οι ευκαιριες.

μεσα στο while οποτε χρειαζεται θα αυξανεται κατα μια , φυσικα δε θα γινεται να χρησιμοποιησουν αλλες λειτουργιες αν δεν εχουν αλλη ευκαιρια.

 

while(eukeries < 3)

{

//blabla

}

Posted

Και αυτό είναι project? Ω θεέ μου τι σκατά σας μαθαίνουν...

 

Τέσπα on the point:

 

Για το "μενού επιλογών" η λογική είναι να τρέξεις έναν ατέρμων βρόγχο (while (true) {}) και να εμφανίζεις τις επιλογές καθώς και να παίρνεις είσοδο από το χρήστη. Ανάλογα τι θα πατήσει καλείς και ένα συγκεκριμένο function που θα κάνει ό,τι ζητάει το κάθε ερώτημα. Μόλις τελειώσει το function, θα γυρίσει στο menu επιλογών (ο ατέρμων βρόγχος του while) και θα μπορεί ο άλλος να ξαναπατήσει ό,τι θέλει. Άμα πατήσει 0, κάνεις break από το βρόγχο και τερματίζεις το πρόγραμμά σου κανονικά. Όσο για τα υπόλοιπα ερωτήματα, είναι πολύ απλά και δεν απαιτούν πάνω από μισή ώρα γραψίματος.

 

Ελπίζω να βοήθησα...

Posted

using System;

class Lab1Ex1

{

public static void Main()

{

 

 

Console.WriteLine("Username:");

string username = Console.ReadLine();

Console.WriteLine("Password:");

string password = Console.ReadLine();

 

if (username == "admin" && password == "admin")

{

Console.WriteLine("You are now logged !!!\n");

{

{

 

Console.WriteLine("MiniProject C#\n");

 

Console.WriteLine("1 - Ypologismos Ginomenou");

Console.WriteLine("2 - Megistos Koinos Diairetis");

Console.WriteLine("3 - 3psifioi Arithmoi Harshad");

Console.WriteLine("0 - Exit\n");

 

Console.Write("Epiloges (1,2,3,or 0): ");

 

 

}

string menu;

menu = Console.ReadLine();

switch (menu)

{

case "1":

Console.WriteLine("1o Erwmima.");

break;

case "2":

Console.WriteLine("2o erwtima.");

break;

case "3":

Console.WriteLine("3o erwtima.");

break;

case "0":

Console.WriteLine("Bye.");

break;

default:

Console.WriteLine("Lathos Epilogi!!!", menu);

break;

}

}

}

else

{

Console.WriteLine("Invalid Username Or Password !!!");

}

Console.ReadKey();

}

}

====================================================================================

Δεν μπορώ να βάλω την επανάληψη [do while (menu != "0" && menu != "0");] ώστε να γυρίζει συνέχεια στο μενού μεχρι ο χρηστης να πατήσει το 0....

Posted

using System;

class Lab1Ex1

{

public static void Main()

{

 

 

Console.WriteLine("Username:");

string username = Console.ReadLine();

Console.WriteLine("Password:");

string password = Console.ReadLine();

 

if (username == "admin" && password == "admin")

{

Console.WriteLine("You are now logged !!!\n");

{

{

 

Console.WriteLine("MiniProject C#\n");

 

Console.WriteLine("1 - Ypologismos Ginomenou");

Console.WriteLine("2 - Megistos Koinos Diairetis");

Console.WriteLine("3 - 3psifioi Arithmoi Harshad");

Console.WriteLine("0 - Exit\n");

 

Console.Write("Epiloges (1,2,3,or 0): ");

 

 

}

string menu;

menu = Console.ReadLine();

switch (menu)

{

case "1":

Console.WriteLine("1o Erwmima.");

break;

case "2":

Console.WriteLine("2o erwtima.");

break;

case "3":

Console.WriteLine("3o erwtima.");

break;

case "0":

Console.WriteLine("Bye.");

break;

default:

Console.WriteLine("Lathos Epilogi!!!", menu);

break;

}

}

}

else

{

Console.WriteLine("Invalid Username Or Password !!!");

}

Console.ReadKey();

}

}

====================================================================================

Δεν μπορώ να βάλω την επανάληψη [do while (menu != "0" && menu != "0");] ώστε να γυρίζει συνέχεια στο μενού μεχρι ο χρηστης να πατήσει το 0....

 

Αυτό ακριβώς πρέπει να κάνεις. Δηλαδή...

 


Console.WriteLine("1 - Ypologismos Ginomenou");
Console.WriteLine("2 - Megistos Koinos Diairetis");
Console.WriteLine("3 - 3psifioi Arithmoi Harshad");
Console.WriteLine("0 - Exit\n");

Console.Write("Epiloges (1,2,3,or 0): ");

menu = Console.ReadLine();
while (menu != "0") { 
       
       // Χειρισμός των επιλογών όπως έχεις ήδη κάνει με switch ;)
    
       Console.WriteLine("1 - Ypologismos Ginomenou");
       Console.WriteLine("2 - Megistos Koinos Diairetis");
       Console.WriteLine("3 - 3psifioi Arithmoi Harshad");
       Console.WriteLine("0 - Exit\n");  

       Console.Write("Epiloges (1,2,3,or 0): ");

       menu = Console.ReadLine();
}

  • 3 weeks later...
Posted

κάτι πρόχειρο αλλά δουλεύει νομίζω

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main()
        {
            string[] args = new string[2];
            args[0] = "username";
            args[1] = "password";

            int fAttempts = 0;

            while (fAttempts <= 3)
            {
                Console.WriteLine("Username:");
                string username = Console.ReadLine();
                Console.WriteLine("Password:");
                string password = Console.ReadLine();
                if (username == args[0] && password == args[1])
                {
                    break; //exit while
                }
                else { fAttempts++; Console.WriteLine("Login failed invalid credentials!\n"); }
            }
            if (fAttempts == 3) { Console.WriteLine("Your login attempts limit has been reached, application will now exit!"); Console.ReadLine(); return; } //Exit

            int menu = 1;
                    
            while (menu != 0)
            {
                showMenu();
                menu = Convert.ToInt32(Console.ReadLine()); //ksanadiavazei

                if (menu == 1)
                {
                    Console.WriteLine("Dwse to M:");
                    int m = Convert.ToInt32(Console.ReadLine());

                    if (m>0)
                    {
                        int sum = 0;
                        int tSum = 0;

                        int i;
                        for (i = 0; i <= m; i++)
                        {
                            if (sum >= m) break;
                            sum = sum * 2 + 1; // ((0x2) + 1 ),(1x2)+1) klp klp
                            tSum += sum;
                           // Console.WriteLine(sum + "\n");
                        }
                        Console.WriteLine(tSum + "\n");
                    }
                }
                else if (menu == 2)
                {
                    Console.WriteLine("Dwse prwto akeraio:");
                    int a = Convert.ToInt32(Console.ReadLine());
                    Console.WriteLine("Dwse deutero akeraio:");
                    int b = Convert.ToInt32(Console.ReadLine());
                    Console.WriteLine(gcd(a, b));
                }
                else if (menu == 3)
                {
                    int i = 100;
                    for (i = 100; i <= 999; i++)
                    {
                        int f = (i / 100) % 10;
                        int s = (i / 10) % 10;
                        int t = i % 10;
                        int sum = f + s + t;
                        if (i % sum == 0) Console.WriteLine(i+",");
                    }
                    Console.WriteLine("\n");
                }
                else if (menu == 0)
                {
                    Console.WriteLine("The application will not exit, you typed 0!");
                    Console.ReadLine();
                    return;
                }
            }

        }

        static int gcd(int u, int v)
               {
                // simple cases (termination)
                 if (u == v)
                 return u;
                if (u == 0)
                 return v;
                if (v == 0)
                 return u;

              // look for factors of 2
                if (u%2==0) // u is even
                if (v%2==1) // v is odd
                return gcd(u >> 1, v);
                else // both u and v are even
                return gcd(u >> 1, v >> 1) << 1;
                if (v%2==0) // u is odd, v is even
                return gcd(u, v >> 1);

                // reduce larger argument
                if (u > v)
                return gcd((u - v) >> 1, v);
                return gcd((v - u) >> 1, u);
                }

        static void showMenu()
        {
            Console.WriteLine("MiniProject C#\n");

            Console.WriteLine("1 - Ypologismos Ginomenou");
            Console.WriteLine("2 - Megistos Koinos Diairetis");
            Console.WriteLine("3 - 3psifioi Arithmoi Harshad");
            Console.WriteLine("0 - Exit\n");

            Console.Write("Epiloges (1,2,3,or 0): ");
        }
    }
}

 

se VS 2008

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Posts

    • L2Vitality Winter Season start December 1st! @followers, @everyone, @highlight, @όλοι 📌 Interlude Custom PvP Server Zariche Style 📌 🚨 219 Custom Additional Skills 🚨 🚨 Custom Weapons, Armor, Jewels, Wings, Tattoos and Agathions ⚔️ 9999x Exp/Sp | Player Start 99 Level ⚔️  ⬆️ Safe +15 | Max +30 | Blessed 85% ⬆️ 🏆 VIP Packages System (Lv 1-5) 🏆 ⚡ Free VIP 1+2 Start with 192 Skills and 89 Items +15 Enchanted (Click and Go) ⚡ 💥 Unique Content 💥 🔰 Easy Farm 💰 PLAY TO EARN SYSTEM WIN 50€ cash 💶 for 10k PvPs and 1k gameplay hours. 🔁 Grand Opening 1st December 2024 @ 20:00 GMT +2 🌐 Website: https://l2vitality.gr/  
    • Massive Black Friday Sale This Month!      View all offers     View our Services MASSIVE BLACK FRIDAY SALE THIS MONTH! FIND OUT MORE IN OUR WEBSITE 80% OFF NEW UPDATED PACKS FIND OUT MORE IN OUR WEBSITE HERE Complete Interlude PvP Server Complete HighFive Low/Mid/PvP Server   Complete Custom Interlude PvP Server Complete Classic Antharas 2.7 Low-Mid Rate Server   Complete Interlude Low-Mid Rate Server Complete Essence Low-Mid-PvP Rate Server Complete HighFive PvP Server for starters   Complete Interlude PvP Server Custom/No Custom for Starters   Complete Interlude PvP Server 2nd Build Project Vitality - Interlude Custom PvP Server with Custom Skills / items Project Opium - Interlude Low Rate No Custom Server   Project Duria - Interlude Custom PvP with Custom Learn Skills Project Flexara - HighFive no Custom PvP   Project Nasty - Interlude Custom PvP with Custom Items, Pride style Project Figma - HighFive no Custom Low Rate 50% OFF FOR NEW SERVER BUILDS FROM ZERO (L2BUILDER) USE PROMO #BLACKFRIDAY in NOTES L2Builder Build your Lineage2 Server from Zero with your selected options using our L2Builder! Web Design Are you looking to update your existing l2 website or get a new website? Server Marketing Promote your server with us and we guarantee that your advertisement will be shown everywhere across the l2 community!   Client Mods Get any client modification that you want for your Lineage 2 Server (any chronicle) Server Host The best web or dedicated server host out there with the best DDoS Protection Server Sources We have the best lineage 2 sources out there since 2006 built carefully without bugs!   Buy Votes Increase your server's visibility in all famous l2vote sites! Our Vote tool is a website where we help you to gain more traction to your private server by bringing more votes to your listing! We do all the heavy lifting like proxies, captcha’s, headless browsers and more so you don’t have to! Try free 20 votes today!   View all supported websites   Buy Guard Athena Guard – Layer 7 DDoS Protection Protect your server against DDos Attacks (Layer 7) IP bans and store in iptable. View more   Donate Panel Automatic Donate Panel v4 for L2JServer Automatic Paypal / Stripe Donate Panel for any L2J Server View more   L2Top Co for SALE L2TOP.CO Is a ranking website released in 2010 with 10,000+ Registered L2 Server owners accounts!   The website is for sale at a special price! Contact Us OTHER LINKS FREE SHARES VIP SHARES APPLY FOR JOB ATHENA PROJECT LIMITED     
    • Hey there, topic type is wrong since there's no LF on this section, but I need client side help so I felt like posting here. I'm looking for some help on client side to change the WASD movement. I'll share a video, part 1 is what I have right now and part 2 what I'd like to add on my project. (Moving with WASD I want the camera to be static even if the character moves around, like on Essence client, I have classic Zaken project). https://streamable.com/3c135q
    • I found this video, I guess you folks should take care before buying adena from "black market".    
  • Topics

×
×
  • Create New...