麻烦好心人帮我看一下这个程序~

问题描述

usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;namespacep3_3{classProgram{staticvoidMain(string[]args){BankCardcard1=newBankCard(){id="001"};BankCardcard2=newBankCard(){id="002"};CreditCardcard3=newCreditCard(){id="X001"};card2.Deposit(500);card1.Query();card2.Query();card3.Query();BankCard.Cur="港币";card1.Query();card2.Query();card3.Query();}}classBankCard{publicstaticstringCur="人民币";publicstringid;publicdecimalmoney;publicvoidQuery(){Console.WriteLine("卡号{0}余额{1}{2}",id,money,Cur);}publicvoidDeposit(decimalx){money=money+x;}publicboolWithdraw(decimalx){if(money>x){money=money-x;returntrue;}else{returnfalse;}}}}classCreditCard:BankCard{}}调试不成功,不知道哪里错了~

解决方案

解决方案二:
运行成功啊。我在winform里面
解决方案三:
我在VISUALSTUDIO里面调试不出来啊啊啊啊
解决方案四:
引用2楼cquptzy8522065的回复:

我在VISUALSTUDIO里面调试不出来啊啊啊啊

你那是控制台程序,我这是windows程序这个不重要我的成功了的、你什么错误
解决方案五:
抄来的程序还是自己写的?如果是自己写程序,要确保程序始终可以编译,并且结果符合预期。这样一旦出现问题,很明显就是最新添加或者修改的代码出错。如果写上一大段才编译,或者干脆抄程序,那么出错了就不知道怎么回事。
解决方案六:
我是照着课本抄的~
解决方案七:
引用5楼cquptzy8522065的回复:

我是照着课本抄的~

从你的namespacep3_3就知道你是抄的你是编译不过嘛还是结果不对?
解决方案八:
}}}//这里多了一个‘}’,结果导致后面的语句被排斥在名称空间之外。删掉它就好了classCreditCard:BankCard{}}

时间: 2024-09-09 03:48:48

麻烦好心人帮我看一下这个程序~的相关文章

求助-哪位好心人帮我看下代码吧,深度遍历搜索图的,有点长,麻烦看下吧

问题描述 哪位好心人帮我看下代码吧,深度遍历搜索图的,有点长,麻烦看下吧 //深度遍历搜索图 #include #include #define MAX_VERTEX_NUM 3 typedef enum {DG,DN,UDG,UDN} GraphKind;//图的类型 typedef int OtherInfo; //弧的信息,如权 typedef char VertexData;//图结点的内容为char typedef struct ArcNode { int adjvex; struct

c语言-麻烦大家帮我看一下这段代码有啥错误?

问题描述 麻烦大家帮我看一下这段代码有啥错误? #include<stdio.h> int b[100],c[100],x; void input(int a[],int n) {printf("输入数组a<10个元素>:"); for(int i=0;i<n;i++) scanf("%c",&a[i]);} void insert(int a[],int n,int x) {for(int i=0;i<n;i++) if

socket-大神帮我看一下这个程序的按位或运算是什么作用

问题描述 大神帮我看一下这个程序的按位或运算是什么作用 public class VoteMsgBinCoder implements VoteMsgCoder { public static final int MIN_WIRE_LENGTH = 4; public static final int MAX_WIRE_LENGTH = 16; public static final int MAGIC = 0x5400; public static final int MAGIC_MASK =

帮我看下这个程序的加密解密过程,python;详细点

问题描述 帮我看下这个程序的加密解密过程,python:详细点 -*- coding: utf-8 -*- import datetime import logging from ctypes import * import socket from xml.dom import minidom logger=logging.getLogger(__name__) class BankTrader(object): TRANSACT_TYPE_IC='icCard' TRANSACT_TYPE_S

谢谢-各位亲,帮帮忙看一下这个程序那里有问题,在浏览器中运行,rs.next()有错

问题描述 各位亲,帮帮忙看一下这个程序那里有问题,在浏览器中运行,rs.next()有错 这是dbBean页面 package com.regist; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Stateme

汇编语言-请大神们帮我看一下这个程序哪出错了,万分感谢!!

问题描述 请大神们帮我看一下这个程序哪出错了,万分感谢!! STACK1 SEGMENT STACK DW 200 DUP (?) STACK1 ENDS DATA SEGMENT SPACE DB 1000 DUP (' ') PATTERN DB 6 DUP (' '),0C9H,26 DUP (0CDH),0BBH,6 DUP (' ') DB 6 DUP (' '),0BAH,26 DUP (20H),0BAH,6 DUP (' ') DB 6 DUP (' '),0C8H,26 DUP

能帮我看下这个程序为什么无限循环

问题描述 #include<string>#include<fstream>#include<sstream>#include<iostream>usingnamespacestd;structtagFileInfo{stringfilename;stringvirusname;};stringreadstring(){ifstreaminfilef("first.txt",ios::in|ios::binary);ostringstre

谁帮我看下这个程序为什么无限循环

问题描述 #include<string>#include<fstream>#include<sstream>#include<iostream>usingnamespacestd;structtagFileInfo{stringfilename;stringvirusname;};stringreadstring(){ifstreaminfilef("first.txt",ios::in|ios::binary);ostringstre

麻烦高手帮我看下,谢谢

问题描述 privatevoidpd_PrintPage(objectsender,System.Drawing.Printing.PrintPageEventArgse){intx=e.MarginBounds.Left;inty=e.MarginBounds.Top;lines=this.richTextBox.Text.Split(param);while(linesPrinted<lines.length){e.Graphics.DrawString(lines[linesPrinted