Announcement

Collapse
No announcement yet.

cho em hỏi về Visual Studio 2012

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #31
    Originally posted by 10520541 View Post
    Sai code!
    Code:
    #..
    void main(){
    ....
    }
    anh code cho em 1 chương trình đơn giản em chạy thử đc không? 3 ngày nay code xong mà không chạy được :hellboy:
    "Measuring programming progress by lines of code is like measuring aircraft building progress by weight." - Bill Gates

    Comment


    • #32
      Originally posted by 12520136 View Post
      anh code cho em 1 chương trình đơn giản em chạy thử đc không? 3 ngày nay code xong mà không chạy được :hellboy:
      Đây, Code đại mấy dòng, thử xem :sogood:
      Code:
      #include "stdio.h"
      #include "string.h"
      
      void main(){
          char str[20];
          printf("What's your name?\n");
          fflush(stdin);
          gets(str);
          printf("Hi %s - Wellcome To UIT ^_^ \n",str);
      }

      Comment


      • #33
        học cách sử dụng visual sao cho code cho thành thạo. ngoài ra còn học cách tìm và sửa lỗi, học cách debug nữa. rất cần thiết sau này làm bài lớn, đồ án!
        -----------------------------
        Mai Văn Khải
        Software Engineering, University Information of Technology
        a07d26eb5cbc98f77b36a461eb629456

        Comment


        • #34
          tạo một empty project rồi dán đoạn code này vào. chú ý phòng cách viết code.

          #include <stdio.h>
          #include <conio.h>


          int main()
          {
          char* a=new char[20];
          a="Hello world";
          printf(a);
          getch();
          }
          -----------------------------
          Mai Văn Khải
          Software Engineering, University Information of Technology
          a07d26eb5cbc98f77b36a461eb629456

          Comment


          • #35
            Originally posted by 10520541 View Post
            Đây, Code đại mấy dòng, thử xem :sogood:
            Code:
            #include "stdio.h"
            #include "string.h"
            
            void main(){
                char str[20];
                printf("What's your name?\n");
                fflush(stdin);
                gets(str);
                printf("Hi %s - Wellcome To UIT ^_^ \n",str);
            }
            em đã dùng được Visual Studio 2012 rồi ^^ cảm ơn tất cả sự support của các anh nhiều lắm lắm :byebye:
            p/s: code của anh không dừng để xem kết quả rùi ^^
            "Measuring programming progress by lines of code is like measuring aircraft building progress by weight." - Bill Gates

            Comment


            • #36
              Originally posted by 12520136 View Post
              em đã dùng được Visual Studio 2012 rồi ^^ cảm ơn tất cả sự support của các anh nhiều lắm lắm :byebye:
              p/s: code của anh không dừng để xem kết quả rùi ^^
              Debug bằng Ctrl + F5 hay chạy trong cmd nhé.

              Comment

              LHQC

              Collapse
              Working...
              X