Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Hello folks

Hello folks

Scheduled Pinned Locked Moved C#
tutorial
28 Posts 9 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M MoeInsairat

    btw wat makes u think that this JOB is not right.. u don't even know me ;p

    Estarta

    D Offline
    D Offline
    Dan Neely
    wrote on last edited by
    #13

    Anyone who passed CS101 should be able to do this in 5 minutes with one hand tied behind their back. If you can't, you should give up your software aspirations and take up a new career as a burger flipper.

    -- CleaKO The sad part about this instance is that none of the users ever said anything [about the problem]. Pete O`Hanlon Doesn't that just tell you everything you need to know about users?

    1 Reply Last reply
    0
    • R rah_sin

      try out public void sumOfInt(int num) { int tot =0; string nubstr = num.ToString(); for(int y=0;y < nubstr.Length; y++) { int sub = int.Parse(nubstr.Substring(y,1)); tot=tot+sub; } MessageBox.Show("Sum of Integers"+" "+tot.ToString()); }

      rahul

      G Offline
      G Offline
      Guffa
      wrote on last edited by
      #14

      Alternatively without using strings at all:

      public int CrossSum(int value) {
      int sum = 0;
      while (value > 0) {
      sum += value % 10;
      value /= 10;
      }
      return sum;
      }

      Frankly, Estarta, if you are applying for a job as a programmer, you should be able to write something simple as this yourself.

      --- single minded; short sighted; long gone;

      M 1 Reply Last reply
      0
      • M MoeInsairat

        btw wat makes u think that this JOB is not right.. u don't even know me ;p

        Estarta

        P Offline
        P Offline
        Pete OHanlon
        wrote on last edited by
        #15

        We may not know you, but we've certainly cleaned up enough messes left by people just like you. The question was basic stuff - it shouldn't have bothered you. Even if you didn't know the ins and outs of the language, you should have been able to come up with the algorithm for it without needing to think about it. You should also have been able to explain the problem properly, without using txtspk. Overall, I'll take one Colin over 100 of you any day.

        Deja View - the feeling that you've seen this post before.

        M 1 Reply Last reply
        0
        • P Pete OHanlon

          We may not know you, but we've certainly cleaned up enough messes left by people just like you. The question was basic stuff - it shouldn't have bothered you. Even if you didn't know the ins and outs of the language, you should have been able to come up with the algorithm for it without needing to think about it. You should also have been able to explain the problem properly, without using txtspk. Overall, I'll take one Colin over 100 of you any day.

          Deja View - the feeling that you've seen this post before.

          M Offline
          M Offline
          MoeInsairat
          wrote on last edited by
          #16

          Well thanks again for the reply. but you know you don't have to say such things if you can erase my account so do it!! but don't act like the YOU ARE THE BEST or i dont know wats the matter with u!!! i asked a question AND I DON'T KNOW THE ANSWER nth to be shamed of!!! and btw i`m a software engineer we didn't took PROGRAMMING LANGUAGES as u did !! we only took the software engineering syuff and rational rose!! You dont even deserve my reply!!! Good bye MR

          Estarta

          P C 2 Replies Last reply
          0
          • M MoeInsairat

            Well thanks again for the reply. but you know you don't have to say such things if you can erase my account so do it!! but don't act like the YOU ARE THE BEST or i dont know wats the matter with u!!! i asked a question AND I DON'T KNOW THE ANSWER nth to be shamed of!!! and btw i`m a software engineer we didn't took PROGRAMMING LANGUAGES as u did !! we only took the software engineering syuff and rational rose!! You dont even deserve my reply!!! Good bye MR

            Estarta

            P Offline
            P Offline
            Pete OHanlon
            wrote on last edited by
            #17

            By definition, a software engineer has to be able to break algorithms down. You couldn't. You're right, there's nothing to be ashamed of when you don't know the answer to a problem - unless that problem is basic. I would be interested to know how you think you are a software engineer if you didn't do any programming languages. Colin pointed out to you that you may not be pursuing the right career. I pointed out to you why I thought he'd done so because you couldn't seem to grasp this. Your answer has compounded the issue. As a professional developer, I have spent a large amount of time mentoring and helping newbie developers but I would advise anybody who couldn't get a grasp on such a basic problem to steer clear of a career in developing. More importantly, as I stated earlier, I have spent a large amount of time clearing up after people who shouldn't have been developers in the first place. If you want to prove me wrong, brush up on your algorithms, learn the basics and then move onto more advanced things.

            Deja View - the feeling that you've seen this post before.

            M 1 Reply Last reply
            0
            • P Pete OHanlon

              By definition, a software engineer has to be able to break algorithms down. You couldn't. You're right, there's nothing to be ashamed of when you don't know the answer to a problem - unless that problem is basic. I would be interested to know how you think you are a software engineer if you didn't do any programming languages. Colin pointed out to you that you may not be pursuing the right career. I pointed out to you why I thought he'd done so because you couldn't seem to grasp this. Your answer has compounded the issue. As a professional developer, I have spent a large amount of time mentoring and helping newbie developers but I would advise anybody who couldn't get a grasp on such a basic problem to steer clear of a career in developing. More importantly, as I stated earlier, I have spent a large amount of time clearing up after people who shouldn't have been developers in the first place. If you want to prove me wrong, brush up on your algorithms, learn the basics and then move onto more advanced things.

              Deja View - the feeling that you've seen this post before.

              M Offline
              M Offline
              MoeInsairat
              wrote on last edited by
              #18

              I Know the basics.. !! int x= int.Parse(Input.Text); int t =0; string i = x.ToString(); for(int y=0;yEstarta

              R S 2 Replies Last reply
              0
              • G Guffa

                Alternatively without using strings at all:

                public int CrossSum(int value) {
                int sum = 0;
                while (value > 0) {
                sum += value % 10;
                value /= 10;
                }
                return sum;
                }

                Frankly, Estarta, if you are applying for a job as a programmer, you should be able to write something simple as this yourself.

                --- single minded; short sighted; long gone;

                M Offline
                M Offline
                MoeInsairat
                wrote on last edited by
                #19

                Thats true. Thanks :)

                Estarta

                1 Reply Last reply
                0
                • M MoeInsairat

                  I Know the basics.. !! int x= int.Parse(Input.Text); int t =0; string i = x.ToString(); for(int y=0;yEstarta

                  R Offline
                  R Offline
                  Russell Jones
                  wrote on last edited by
                  #20

                  that's quite a different question from the one you asked at the start :confused: Can i suggest not using the letter i to denote a string, even if it does contain the string representation of an integer. You should use Parse or TryParse on the input to make sure that the number can be represented as a number. Russell

                  1 Reply Last reply
                  0
                  • M MoeInsairat

                    I Know the basics.. !! int x= int.Parse(Input.Text); int t =0; string i = x.ToString(); for(int y=0;yEstarta

                    S Offline
                    S Offline
                    Stefan Troschuetz
                    wrote on last edited by
                    #21

                    Estarta wrote:

                    This is wat i did!!and its working, but wat im asking is there is anyway i can do it without Parse the int to String?

                    So why didn't you show us the code and asked exactly that question in the first place? Why did you told us "i've tried, but i can't get it done!"?


                    "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook

                    www.troschuetz.de

                    M 1 Reply Last reply
                    0
                    • S Stefan Troschuetz

                      Estarta wrote:

                      This is wat i did!!and its working, but wat im asking is there is anyway i can do it without Parse the int to String?

                      So why didn't you show us the code and asked exactly that question in the first place? Why did you told us "i've tried, but i can't get it done!"?


                      "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook

                      www.troschuetz.de

                      M Offline
                      M Offline
                      MoeInsairat
                      wrote on last edited by
                      #22

                      bcuz i've tried and maybe my question wasn't so clear.. i was trying to tell u guys i want the answer without parsing the input into integers.. anyway i got the answer thanks for ur time

                      Estarta

                      S 1 Reply Last reply
                      0
                      • M MoeInsairat

                        Well thanks again for the reply. but you know you don't have to say such things if you can erase my account so do it!! but don't act like the YOU ARE THE BEST or i dont know wats the matter with u!!! i asked a question AND I DON'T KNOW THE ANSWER nth to be shamed of!!! and btw i`m a software engineer we didn't took PROGRAMMING LANGUAGES as u did !! we only took the software engineering syuff and rational rose!! You dont even deserve my reply!!! Good bye MR

                        Estarta

                        C Offline
                        C Offline
                        Colin Angus Mackay
                        wrote on last edited by
                        #23

                        Estarta wrote:

                        i`m a software engineer we didn't took PROGRAMMING LANGUAGES as u did !! we only took the software engineering syuff and rational rose!!

                        What kind of crazy Software Engineering course did you do? The university I went to offered SoftEng courses and they included C++ and COBOL (it was a while ago) in the curriculum.


                        Upcoming events: * Edinburgh: Web Security Conference Day for Windows Developers (12th April) * Glasgow: Introduction to AJAX (2nd May), SQL Server, Mock Objects My website

                        P 1 Reply Last reply
                        0
                        • M MoeInsairat

                          bcuz i've tried and maybe my question wasn't so clear.. i was trying to tell u guys i want the answer without parsing the input into integers.. anyway i got the answer thanks for ur time

                          Estarta

                          S Offline
                          S Offline
                          Stefan Troschuetz
                          wrote on last edited by
                          #24

                          Estarta wrote:

                          my question wasn't so clear

                          Certainly not.

                          Estarta wrote:

                          i was trying to tell u guys i want the answer without parsing the input into integers.

                          You never even clearly stated that the input is the string representation of an integer. By the way, there is no way I can think of that wouldn't require you to do some parsing. You cannot do mathematical computations with strings.


                          "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook

                          www.troschuetz.de

                          M 1 Reply Last reply
                          0
                          • S Stefan Troschuetz

                            Estarta wrote:

                            my question wasn't so clear

                            Certainly not.

                            Estarta wrote:

                            i was trying to tell u guys i want the answer without parsing the input into integers.

                            You never even clearly stated that the input is the string representation of an integer. By the way, there is no way I can think of that wouldn't require you to do some parsing. You cannot do mathematical computations with strings.


                            "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook

                            www.troschuetz.de

                            M Offline
                            M Offline
                            MoeInsairat
                            wrote on last edited by
                            #25

                            private void Button1_Click(object sender, System.EventArgs e) { int x= int.Parse(Input.Text); int sum = 0; while (x > 0) { sum += x % 10; x /= 10; } Output.Text=sum.ToString(); } how about this one?

                            Estarta

                            S 1 Reply Last reply
                            0
                            • M MoeInsairat

                              private void Button1_Click(object sender, System.EventArgs e) { int x= int.Parse(Input.Text); int sum = 0; while (x > 0) { sum += x % 10; x /= 10; } Output.Text=sum.ToString(); } how about this one?

                              Estarta

                              S Offline
                              S Offline
                              Stefan Troschuetz
                              wrote on last edited by
                              #26

                              Estarta wrote:

                              how about this one?

                              Computes the sum of the digits of the number entered in Input control, but I gues you already know that. What is the actual question here. By the way, you should surround the Parse operation with a try-catch-block to catch the FormatException thrown when the Input control does not contain a valid string representation of an integer (or use TryParse when programming for Framework version > 1.1).


                              "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rick Cook

                              www.troschuetz.de

                              1 Reply Last reply
                              0
                              • C Colin Angus Mackay

                                Estarta wrote:

                                i`m a software engineer we didn't took PROGRAMMING LANGUAGES as u did !! we only took the software engineering syuff and rational rose!!

                                What kind of crazy Software Engineering course did you do? The university I went to offered SoftEng courses and they included C++ and COBOL (it was a while ago) in the curriculum.


                                Upcoming events: * Edinburgh: Web Security Conference Day for Windows Developers (12th April) * Glasgow: Introduction to AJAX (2nd May), SQL Server, Mock Objects My website

                                P Offline
                                P Offline
                                Pete OHanlon
                                wrote on last edited by
                                #27

                                COBOL - almost a good anagram.:laugh:

                                Deja View - the feeling that you've seen this post before.

                                1 Reply Last reply
                                0
                                • M MoeInsairat

                                  Please i need this answer asap.. if i want to do a function that accepts INTEGERS number... then i wanna the sum of these integers.. for example if i entered 123.. the answer should be 6. Thanks in advance Regards

                                  Estarta

                                  D Offline
                                  D Offline
                                  David Crow
                                  wrote on last edited by
                                  #28

                                  Are you referring to the digital root of a number?


                                  "Approved Workmen Are Not Ashamed" - 2 Timothy 2:15

                                  "Judge not by the eye but by the heart." - Native American Proverb

                                  1 Reply Last reply
                                  0
                                  Reply
                                  • Reply as topic
                                  Log in to reply
                                  • Oldest to Newest
                                  • Newest to Oldest
                                  • Most Votes


                                  • Login

                                  • Don't have an account? Register

                                  • Login or register to search.
                                  • First post
                                    Last post
                                  0
                                  • Categories
                                  • Recent
                                  • Tags
                                  • Popular
                                  • World
                                  • Users
                                  • Groups