C ++ and C # details

xiaoxiao2021-03-06  48

Static void main (string [] args)

{

//

// Todo: Add code here to start the application

//

INT i = 0;

i = i;

Console.writeline ("i = {0}", i); // Output i = 1

}

Static void main (string [] args)

{

//

// Todo: Add code here to start the application

//

INT i = 0;

i = i ;

Console.WriteLine ("i = {0}", i); // Output i = 0

}

void main ()

{

INT i = 0;

i = i ; // i = i;

Printf ("i =% D", I); // Output I = 1

}

转载请注明原文地址:https://www.9cbs.com/read-84241.html

New Post(0)