| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 125135 | 杨涵雅 | 判断正数 | C++ | Runtime Error | 0 | 0 MS | 240 KB | 220 | 2024-01-23 16:27:49 |
#include<iostream> #include<stdlib.h> using namespace std; int main(){ int a; scanf("%d",&a); if (a>0) { printf("yes\n"); } if (a<=0) { printf("no\n"); } system("pause"); return 0; }