如何使用没有参数的函数在学生标记上编写程序?

时间:2015-08-06 09:23:16

标签: ios objective-c iphone function void

如何使用不带参数的函数在学生分数上编写程序:

  #import <Foundation/Foundation.h>

  void studentMarks(){

  }

  int main( int argc const char *argv[]) {

  }

1 个答案:

答案 0 :(得分:1)

使用以下功能:

int c = 0;

- (void)studentMarks { 
        NSLog(@"%d", c);
 }

int main(int argc, const char *argv[]) {
       int a = 3, b = 2;
       c = a - b;
       [self studentMarks];
}