求出下面几道题,急急急!在线等。C#
1、写出程序的运行结果。usingSystem;classTest{publicstaticvoidMain(){intx=5,y=15,i,p;for(i=15;i<=...
1、写出程序的运行结果。
using System; class Test
{
public static void Main()
{
int x = 5,y=15,i,p;
for(i=15;i<=x*y;i++)
if(i%x==0&&i%y==0)
{ Console.WriteLine(y);
Break ;}
}
}
2、写出下列函数的功能。
static int SA(int a,int b)
{
if (a>b)
return 1;
else if (a==b)
return 0;
else
return -1;
}
3.写出以下程序的功能。
static void Main()
{
int[]a=new int[10]{2,4,6,8,10,12,14,16,18,20};
for(int i=0;i<10;i++)
{
Console.write(“ “+a[i]);
if((i+1)%5==0)
Console.WriteLine();
}
}
4 .写出以下程序的功能。
static void LE(int a, int b)
{
int x=a;
a=b;
b=x;
}
Public static void Main()
{
int x=10,y=25;
LE(x,y);
Console.WriteLine(x+” “+y);
}
5. 写出以下程序运行结果。
下列语句是MyClass的一部分,obj是MyClass的一个对象。
private class subclass
{ public int data;
public void change(ref int x)
{ x=1;}
}
public static void Main()
{
subClass s=new subClass();
s.data=100;
s.change(ref s.data);
Console.WriteLine(s.data);
}
6. 写出以下程序的功能。
static void f2(ref double[] a, int n)
{
int i,max;
int[]a=new int[10];
for(i=0;i<n;i++)
a[i]=Convert.ToInt32(Console.ReadLine());
max=a[0];
for(i=1;i<10;i++)
if(max<a[i])
max=a[i] ;
Console.writeLine(max);
}
7.写出以下程序的运行结果。
using System;
class Test
{
public static void Main()
{
int x = 6;
int y = x--;
Console.WriteLine(y);
y=--x;
Console.WriteLine(y);
}
}
8. 写出下列函数的功能。
static int SA(int a,int b)
{
if (a>b)
return a;
else if (a==b)
return 0;
else
return b;
} 展开
using System; class Test
{
public static void Main()
{
int x = 5,y=15,i,p;
for(i=15;i<=x*y;i++)
if(i%x==0&&i%y==0)
{ Console.WriteLine(y);
Break ;}
}
}
2、写出下列函数的功能。
static int SA(int a,int b)
{
if (a>b)
return 1;
else if (a==b)
return 0;
else
return -1;
}
3.写出以下程序的功能。
static void Main()
{
int[]a=new int[10]{2,4,6,8,10,12,14,16,18,20};
for(int i=0;i<10;i++)
{
Console.write(“ “+a[i]);
if((i+1)%5==0)
Console.WriteLine();
}
}
4 .写出以下程序的功能。
static void LE(int a, int b)
{
int x=a;
a=b;
b=x;
}
Public static void Main()
{
int x=10,y=25;
LE(x,y);
Console.WriteLine(x+” “+y);
}
5. 写出以下程序运行结果。
下列语句是MyClass的一部分,obj是MyClass的一个对象。
private class subclass
{ public int data;
public void change(ref int x)
{ x=1;}
}
public static void Main()
{
subClass s=new subClass();
s.data=100;
s.change(ref s.data);
Console.WriteLine(s.data);
}
6. 写出以下程序的功能。
static void f2(ref double[] a, int n)
{
int i,max;
int[]a=new int[10];
for(i=0;i<n;i++)
a[i]=Convert.ToInt32(Console.ReadLine());
max=a[0];
for(i=1;i<10;i++)
if(max<a[i])
max=a[i] ;
Console.writeLine(max);
}
7.写出以下程序的运行结果。
using System;
class Test
{
public static void Main()
{
int x = 6;
int y = x--;
Console.WriteLine(y);
y=--x;
Console.WriteLine(y);
}
}
8. 写出下列函数的功能。
static int SA(int a,int b)
{
if (a>b)
return a;
else if (a==b)
return 0;
else
return b;
} 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询