代码测试

Python

import numpy as np

print("hello,world!")

Matlab

function sum = generate_sum_code(num1, num2)
    fprintf('sum = %f + %f;\n', num1, num2);
    sum = num1 + num2;
end

C++

#include<iostream>
using namespace std;
int main(){
  printf("hello,world!");
  return 0;
}

C

#include<iostream>
using namespace std;
int main(){
  printf("hello,world!");
  return 0;
}
✨ 留言板 / Message Box

后端部署中,敬请期待喵...