Giter VIP home page Giter VIP logo

cplusplus-practices-2011's People

Contributors

ameilia avatar luckymark avatar

Watchers

 avatar

cplusplus-practices-2011's Issues

这是什么原因造成的?

  在代码段里面连续申请了两个字符指针,连续对他们用cin赋值,编译能过但是当输入第二个字符串的时候程序崩溃,这是什么原因造成的啊?
  例:

   #include<iostream.h>
   int main()
{
    char *p1,*p2;
    cout<<"请输入"<<endl;
    cin>>p1;
    cout<<"请输入"<<endl;
    cin>>p2;
    return 0;
}

Original issue reported on code.google.com by [email protected] on 19 Oct 2011 at 1:49

这是没有commiter权限吗?

我点source标签,出来这个
Command-line access

Use this command to anonymously check out the latest project source code:

# Non-members may check out a read-only working copy anonymously over HTTP.
svn checkout http://cplusplus-practices-2011.googlecode.com/svn/ 
cplusplus-practices-2011-read-only
GUI and IDE access

This project's Subversion repository may be accessed using many different 
client programs and plug-ins. See your client's documentation for more 
information.

Original issue reported on code.google.com by [email protected] on 21 Sep 2011 at 12:21

在2011下创建文件夹。

问题:在用课上的方法用SVN在2011目录下创建文件夹时,提示�
��入username和password,password在 source的“When prompted, enter your 
generated googlecode.com password.”中获取不到。
是我的操作有问题么,还是什么原因?谢谢。





Original issue reported on code.google.com by [email protected] on 9 Sep 2011 at 6:20

commit to 路径修改

修改目录名以后,commit to 没有自动修改,导致文件不能更新 
用relocate也不行 请问谁知道修改commit to的具体方法


Original issue reported on code.google.com by [email protected] on 11 Sep 2011 at 6:08

帮同学问一下 打印数值的时候怎么崩溃

#include<stdio.h>
typedef struct node{
    int data;
    struct node *next;
}ListNode,*ListNodePtr;

void Creat_List(ListNodePtr L,int n){
    ListNodePtr p,q;
    int i;
    int a;

    q=(ListNodePtr)malloc(sizeof(ListNode));
    q->data=n;
    q->next=NULL;

    for(i=1;i<=n;i++){
        p=(ListNodePtr)malloc(sizeof(ListNode));
        printf("请输入第%d个元素:\n",i);
        scanf("%d",&a);
        p->data=a;
        p->next=q->next;
        q->next=p;
    }
    L=q;
}

void Print_List(ListNodePtr L){
    ListNodePtr p=L->next;
    int i=1;
    for(i;i<=5;i++){
        printf("第%d个数据为:%d\n",i,p->data);
        p=p->next; 
    }
}

void main(){
    int n=5;
    ListNodePtr L;
    Creat_List(L,n);
    Print_List(L);
}

Original issue reported on code.google.com by [email protected] on 10 Oct 2011 at 2:11

怎么取得上传文件时需要的密码?

如题,怎么取得密码呢?我点profile-settings和source-googlecode.com 
password的时候都不能打开网页,还有什么办法呢?或者谁能够
提供一个可以打开那个网页的工具?谢谢。

Original issue reported on code.google.com by [email protected] on 8 Nov 2011 at 9:07

安装eclipse

一直装不好 按照网上说的一步一步的做  最后还是不行 
在debug的时候提示  launch failed 

binary notfound  

Original issue reported on code.google.com by [email protected] on 27 Sep 2011 at 11:25

eclipse的编译问题。

编程序时,每次编译时都会出现undefined reference to 
`WinMain@16'。然后我将eclipse重启,再编译就可以了。这是什么�
��因?怎么解决?
哪怕是编这个:
#include <iostream>
using namespace std;
int main(void) {
    cout << "Hello World" << endl;
    return 0;
}
显示:
Symbol 'cout' could not be resolved;
Symbol 'endl' could not be resolved;
undefined reference to 'WinMain@16'
然后重启eclipse,又能编译了。这咋办?求指点!!
(作业三道题,我重启了至少3次eclipse)

Original issue reported on code.google.com by [email protected] on 20 Sep 2011 at 6:55

二恶

What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?


Please use labels and text to provide additional information.


Original issue reported on code.google.com by [email protected] on 11 Sep 2011 at 10:43

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.