Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
126867 刘语晗 九九乘法表2 C++ 通过 100 0 MS 232 KB 238 2024-01-24 17:15:16

Tests(1/1):


#include<iostream> using namespace std; int main() { long long j,i; for(i=1;i<=9;i++) { for(j=1;j<=i;j++){ cout<<j<<"*"<<i<<"="<<i*j; if(i*j<10) cout<<" "; else cout<<" "; } cout<<"\n"; } return 0; }


测评信息: