public class chengfabiao { public static void main(String[] args) { // TODO 自动生成的方法存根 int z = 1; for(int a = 1;a < 10;...
分类:
其他好文 时间:
2015-12-05 09:38:38
阅读次数:
137
public class jiecheng2 { public static void main(String[] args) { // 1+1/2!+1/3!+1/4!=1/5!+...+1/20!=? int x=20; doubl...
分类:
其他好文 时间:
2015-12-05 09:37:59
阅读次数:
163
public class sanjiaoxing3 {//菱形 public static void main(String[] args) { int m=4; for (int i=0;i0;i--){ for(int j=0;j=0;j--){ ...
分类:
其他好文 时间:
2015-12-05 09:37:49
阅读次数:
132
1 package chengfabiao; 2 3 public class chengfabiao { 4 5 public static void main(String[] args) 6 { 7 //九九乘法表 8 ...
分类:
其他好文 时间:
2015-12-05 08:26:02
阅读次数:
203
创建一个IOSApp类IOSApp.h文件 1 #import 2 3 @interface IOSApp : NSObject 4 5 // 1.添加一个无参数的方法 6 -(void)printInfomation; 7 8 // 2.添加一个有参数的方法 9 -(void)buyApp...
分类:
移动开发 时间:
2015-12-05 00:24:00
阅读次数:
183
super在Objective-C中,如果我们需要在类的方法中调用父类的方法时,通常都会用到super,如下所示:@interface MyViewController: UIViewController@end@implementation MyViewController- (void)view...
分类:
其他好文 时间:
2015-12-05 00:17:35
阅读次数:
225
public class XQ { public static void main(String[] args) { for(int i=1;i<=9;i++){ for(int j=1;j<=i;j++){ Sys...
分类:
其他好文 时间:
2015-12-04 23:01:40
阅读次数:
481
public class Xiaojiujiu { public static void main(String[] args) { int m = 9; for (int i = 1; i <= m; i++) { for (int j = ...
分类:
其他好文 时间:
2015-12-04 22:58:40
阅读次数:
304
第一步修改RouteConfig.cs文件 public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.MapRoute( "...
分类:
Web程序 时间:
2015-12-04 22:50:56
阅读次数:
167
1 package zjy; 2 3 public class Cfkj1_1 { 4 public static void main(String[] args) { 5 int i=1,j=1; 6 for(i=1;i<=9;i++){ 7 ...
分类:
编程语言 时间:
2015-12-04 22:50:42
阅读次数:
196