| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1001 人关注过本帖
标题:两个程序明明完全一样 为什么我抄的却提示错误
取消只看楼主 加入收藏
达文西
Rank: 1
等 级:新手上路
威 望:1
帖 子:117
专家分:0
注 册:2007-8-4
收藏
 问题点数:0 回复次数:2 
两个程序明明完全一样 为什么我抄的却提示错误

using System;
public class ChengFaBiao
{

public static void Main()
{

Console.WriteLine("jiu jiu cheng fa biao");
for (int x = 1; x <= 9; x++) ;
{
for (int y = 1; y <= x; y++) ;
{
Console.Write("{0}*{1}={2}\t",x,y,x * y);
}
Console.WriteLine();

}

}
}





using System;
public class ChengFaBiao
{
public static void Main()
{
Console.WriteLine ("jiu jiu cheng fa biao");
for(int x=1;x<=9;x++)
{
for(int y=1;y<=x;y++)
{
Console.Write ("{0}*{1}={2}\t",x,y,x*y);
}
Console.WriteLine ();
}
}
}

上面的是我抄的
下面是对的程序

我抄的那个老提示当前上下文不存在x ,y

搜索更多相关主题的帖子: 提示 
2007-08-16 09:04
达文西
Rank: 1
等 级:新手上路
威 望:1
帖 子:117
专家分:0
注 册:2007-8-4
收藏
得分:0 

错误提示
类,结构或接口信息中的标记无效

2007-08-16 09:14
达文西
Rank: 1
等 级:新手上路
威 望:1
帖 子:117
专家分:0
注 册:2007-8-4
收藏
得分:0 

fuck
using System;
class Test
{
static void Swap(ref int x,ref int y)
{
int temp = x;
x = y;
y = temp;
}
static void Main()
{
int i = 1;
int j = 2;
Swap(ref i,ref j);
Console.WriteLine("i={0},j={1}",i,j);
Console.ReadLine();
}

}

using System;
class Test
{
static void Swap(ref int x,ref int y)
{
int temp = x;
x = y;
y = temp;
}
static void Main()
{
int i = 1;
int j = 2;
Swap(ref i,ref j);
Console.WriteLine("i={0},j={1}",i,j);
Console.ReadLine();
}

}

2007-08-16 16:30
快速回复:两个程序明明完全一样 为什么我抄的却提示错误
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.047089 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved